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.
19 lines
355 B
19 lines
355 B
11 months ago
|
// Use complex expression in assign structure
|
||
|
int main () {
|
||
|
int a;
|
||
|
int b;
|
||
|
int c;
|
||
|
int d;
|
||
|
int result;
|
||
|
a = 5;
|
||
|
b = 5;
|
||
|
c = 1;
|
||
|
d = -2;
|
||
|
result = (d * 1 / 2) + (a - b) - -(c + 3) % 2;
|
||
|
putint(result);
|
||
|
result = ((d % 2 + 67) + -(a - b) - -((c + 2) % 2));
|
||
|
result = result + 3;
|
||
|
putint(result);
|
||
|
return 0;
|
||
|
}
|