for(int i = 5; i > 0; i--){
cout << "Ending in " << i << " seconds...\n";
Sleep(1000);
i++;
}
/
Originally Posted by CodeDemon
Isnt it common C++? /
It should be, but you should know by now that half of the people in this section don't know C++ and just like to C+P things and call themselves a "Coder".