CAP/MiniC/TP04/tests/provided/step2/test02.c

16 lines
152 B
C
Raw Permalink Normal View History

2024-10-06 19:58:11 +02:00
#include "printlib.h"
int main() {
int x,y;
x = 9;
if (x < 2)
y=7;
else
y=12;
x = y;
return 0;
}
// EXPECTED