initial commit

This commit is contained in:
2023-07-16 13:23:25 +00:00
commit c3fa5367c3
85 changed files with 4921 additions and 0 deletions

11
C++/THE_HARDEST_TASK.CPP Normal file
View File

@ -0,0 +1,11 @@
#include <iostream>
int main() {
int i = 2;
mark:
std::cout << i << '\n';
if (i < 50) {
i += 2;
goto mark;
}
}