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