Facebook
From Smelly Agouti, 8 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 332
  1. #include <iostream>
  2. #include <string>
  3. #include <windows.h>
  4. #include <cstdlib>
  5.  
  6. using namespace std;
  7.  
  8. int main()
  9. {
  10.         for (int i = 15; i >= 0; i--)
  11.         {
  12.                 Sleep(1000);
  13.                 system("cls");
  14.                 cout << i << endl;
  15.                
  16.         }
  17.         cout << "jebut" << endl;
  18.        
  19.         system("PAUSE");
  20.         return 0;
  21.  
  22. }
  23.