SysYTestcases/function_2020/43_time_prior_plus.sy
ridethepig 13f3cb710a init
2023-05-16 00:56:56 +08:00

15 lines
215 B
Plaintext

// Check the priority between time and plus
int main() {
int a;
a = 20;
int b;
b = 5;
int c;
c = 6;
int d;
d = -4;
a = a + c * d - b % (a + d) / a;
putint(a);
return 0;
}