#include <iostream>
usingnamespace std;
int main
{
int number;
cout << "enter in a number";
cin >> number;
cout << "hmmm...";
cout << "that number plus 5 is " << number+5 <<".";
system("PAUSE");
return EXIT_SUCCESS;
}
Would there be any way to make the program pause for about a second after the cout <<"hmmm...";
to give the humerous illusion the computer has to think about it
instead of just instantly moving on to the next line?