sysy/functional_c/sy/33_while_if_test3.sy

26 lines
335 B
Plaintext
Raw Normal View History

2024-04-14 22:20:29 +08:00
int deepWhileBr(int a, int b) {
int c;
c = a + b;
while (c < 75) {
int d;
d = 42;
if (c < 100) {
c = c + d;
if (c > 99) {
int e;
e = d * 2;
if (1 == 1) {
c = e * 2;
}
}
}
}
return (c);
}
int main() {
int p;
p = 2;
return deepWhileBr(p, p);
}