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