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
+27
View File
@@ -0,0 +1,27 @@
#include <iostream>
using namespace std;
int main (){
/* Синтаксис:
while (condition) {
statement1;
statement2;
...
}
или
do {
statement1;
statement2;
...
} while (condition);
*/
int i = 0;
while (i < 5) {
cout << "Hello world " << i << "! ";
i++;
}
cout << endl;
return 0;
}