testsAndMisc/CPP/miscelanious/xGoesTo0/xgoes.cpp

12 lines
102 B
C++
Executable File

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