You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
310 B
25 lines
310 B
11 months ago
|
// test if-else-if
|
||
|
int ifElseIf() {
|
||
|
int a;
|
||
|
a = 5;
|
||
|
int b;
|
||
|
b = 10;
|
||
|
if(a == 6 || b == 0xb) {
|
||
|
return a;
|
||
|
}
|
||
|
else {
|
||
|
if (b == 10 && a == 1)
|
||
|
a = 25;
|
||
|
else if (b == 10 && a == -5)
|
||
|
a = a + 15;
|
||
|
else
|
||
|
a = -+a;
|
||
|
}
|
||
|
|
||
|
return a;
|
||
|
}
|
||
|
|
||
|
int main(){
|
||
|
putint(ifElseIf());
|
||
|
return 0;
|
||
|
}
|