1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
#include <iostream>
#include <windows.h>
#include <time.h>
using namespace std;
int year;
char character;
char where;
char how;
void sleep(unsigned int mseconds)
{
clock_t goal = mseconds + clock();
while (goal > clock());
}
int main () {
system("color c");
cout << "Half-life 3 Chat v.1.0" <<endl;
sleep(1000);
cout << "Launching, wait..." <<endl;
sleep(3000);
cout << "Hello, and welcome to Half-life 3 chat. Here, you will have fun !" <<endl;
sleep(4000);
cout << "Let's make a little poll." <<endl;
sleep(4000);
cout << "How do you think ? In what year Half-life 3 will come out ?" <<endl;
cin >> year;
sleep(4000);
cout << "Oh my God ! Do you really think that Half-life 3 will be released in " << year << " year ?" <<endl;
sleep(4000);
cout << "Are you crazy ? I have an idea ! I will call you 'Crazy', it can be your username in this chat too ;)" <<endl;
sleep(7000);
cout << "Alright Crazy, second question. Who will be the main character of Half-life 3 ?" <<endl;
cin >> character;
sleep(2000);
cout << "Possible." <<endl;
sleep(4000);
cout << "So, Crazy, 2 questions left." <<endl;
sleep(4000);
cout << "Where the action of Half-life 3 will happen ?" <<endl;
cin >> where;
sleep(5000);
cout << "Never heard about this place, may be it came from your crazy brain ? ;)" <<endl;
sleep(4000);
cout << "Last question on today, it's about our real situation. Do you belive in a Half-life 3 'screenshots' which are appearing in the internet ?" <<endl;
cin >> how;
sleep(2000);
cout << "Alright, now i have got your characteristic." <<endl;
sleep(3000);
cout << "You're male, 17-19 years old, which plays a lot of games and wait for Half-life 3. You also like this programm ;)." <<endl;
sleep(4000);
cout << "Don't forget the next version of this programm, when it's released !" <<endl;
sleep(2000);
cout << "Titles :" <<endl;
sleep(500);
cout << "Programmer : Seer" <<endl;
sleep(500);
cout << "Idea : Seer" <<endl;
sleep(4000);
cout << "Now, you can surely close the programm" <<endl;
cout << "*** THE END ***" <<endl;
sleep(10000);
system("pause");
return 0;
}
|