Created
April 29, 2020 15:38
-
-
Save KrystianGraba/17c83fefb8d580296a1c47a60140b708 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <windows.h> | |
| using namespace std; | |
| int main() | |
| { | |
| for (int i = 1;i <= 10;i++) { | |
| cout << i; | |
| Sleep(1000); | |
| system("cls"); | |
| } | |
| cout << "START"; | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment