Skip to content

Instantly share code, notes, and snippets.

@SethDusek
Created December 3, 2014 15:23
Show Gist options
  • Save SethDusek/c75f30fde78ed0762521 to your computer and use it in GitHub Desktop.
Save SethDusek/c75f30fde78ed0762521 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);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment