Projet-Systemes-Informatiques/tests/testFile
Raphaël LACROIX 5e4be22e3d big overhaul
2023-05-31 23:20:18 +02:00

9 lines
115 B
Text

int main() {
int a;
a = 5;
if (a != 8) {
while(a < 20){
a = a+2;
}
}
}