Reorganize

This commit is contained in:
oleg20111511
2026-03-02 19:15:17 +02:00
parent 9192716bfb
commit f235a35ebb
610 changed files with 1 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#include <iostream>
using namespace std;
int main() {
/* Синтаксис:
for (создание переменной; условие; выражение) {
statement1;
statement2;
...
}
*/
for (int i = 1; i <= 10; i++) {
cout << "You wasted another moment. Now here lay " << i << " dead kittens..." << endl;
}
return 0;
}