Skip to content

Instantly share code, notes, and snippets.

@KrystianGraba
Created April 29, 2020 15:38
Show Gist options
  • Select an option

  • Save KrystianGraba/17c83fefb8d580296a1c47a60140b708 to your computer and use it in GitHub Desktop.

Select an option

Save KrystianGraba/17c83fefb8d580296a1c47a60140b708 to your computer and use it in GitHub Desktop.
#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