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

17 lines
165 B
C
Raw Normal View History

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