Skip to content

Instantly share code, notes, and snippets.

@SethDusek
Created December 3, 2014 15:58
Show Gist options
  • Save SethDusek/859031a18e05ebfb3bb8 to your computer and use it in GitHub Desktop.
Save SethDusek/859031a18e05ebfb3bb8 to your computer and use it in GitHub Desktop.
#include <iostream>
#include "windows.h"
using namespace std;
int main() {
int n = 10;
while (n>0) {
n--;
cout << "\n" << n;
Sleep(100);
}
Sleep(2000);
system("pause");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment