testsAndMisc/CPP/miscelanious/xGoesTo0/xgoes.cpp

10 lines
107 B
C++

#include <stdio.h>
int main() {
int x = 10;
while (x-- > 0) {
printf("%d;", x);
}
return 0;
}