This repository has been archived on 2024-08-23. You can view files and clone it, but cannot push or open issues or pull requests.
lessons/C++/THE_HARDEST_TASK.CPP
2023-07-16 13:23:25 +00:00

12 lines
144 B
C++

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