Advertisement
Nabalazs

Useful application (yes, I'm proud)

Dec 23rd, 2015
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.34 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. #include <cstdlib>
  4. #include <windows.h>
  5.  
  6. using namespace std;
  7. int main()
  8. {
  9.     cout << "How fast should the sex be? \n The lover the number, the faster it will be.\n";
  10.     int a;
  11.     cin >> a;
  12.    while(true)
  13.    {
  14.  
  15.     cout << "8=====D   ()" << endl;
  16.     Sleep(a);
  17.     system("cls");
  18.     cout << " 8=====D  ()" << endl;
  19.     Sleep(a);
  20.     system("cls");
  21.     cout << "  8=====D ()" << endl;
  22.     Sleep(a);
  23.     system("cls");
  24.     cout << "   8=====D()" << endl;
  25.     Sleep(a);
  26.     system("cls");
  27.     cout << "    8====(=)" << endl;
  28.     Sleep(a);
  29.     system("cls");
  30.     cout << "     8===(=)" << endl;
  31.     Sleep(a);
  32.     system("cls");
  33.     cout << "      8==(=)" << endl;
  34.     Sleep(a);
  35.     system("cls");
  36.     cout << "       8=(=)" << endl;
  37.     Sleep(a);
  38.     system("cls");
  39.     cout << "      8==(=)" << endl;
  40.     Sleep(a);
  41.     system("cls");
  42.     cout << "     8===(=)" << endl;
  43.     Sleep(a);
  44.     system("cls");
  45.     cout << "    8====(=)" << endl;
  46.     Sleep(a);
  47.     system("cls");
  48.     cout << "   8=====D()" << endl;
  49.     Sleep(a);
  50.     system("cls");
  51.     cout << "  8=====D ()" << endl;
  52.     Sleep(a);
  53.     system("cls");
  54.     cout << " 8=====D  ()" << endl;
  55.     Sleep(a);
  56.     system("cls");
  57.     cout << "8=====D   ()" << endl;
  58.     Sleep(a);
  59.     system("cls");
  60.    }
  61.     return 0;
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement