CAP/MiniC/TP04/tests/provided/step2/test_while1.c
2024-10-06 19:58:11 +02:00

26 lines
208 B
C

#include "printlib.h"
int main() {
int n;
n = 9;
while (n > 0) {
n = n-1 ;
println_int(n) ;
}
return 0;
}
// EXPECTED
// 8
// 7
// 6
// 5
// 4
// 3
// 2
// 1
// 0