mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 16:43:05 +02:00
12 lines
102 B
C++
Executable File
12 lines
102 B
C++
Executable File
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
int x = 10;
|
|
while (x-- > 0)
|
|
{
|
|
printf("%d;", x);
|
|
}
|
|
return 0;
|
|
}
|