Hi Guys. I am relatively new to C++ so i may seem a bit inexperienced, but please bear with me.
I am doing a little c++ project to help increase my experience and i have come to a stand still. (I have defined loopcount earlier on in the program)
while (loopcount > 0) //It is meant to be a infinite loop
{
cout << "100101100011110101010100000001010101000010101001010101000100"
<< "100000000001011110111101100001001011011001101010001011010110"
<< "010110010101010101011110101010100001111101100001000100101010"
<< "010101010101011011010101010101000000000001111111111000110000";
}
I need each digit to appear on the screen one at a time every 0.25 seconds. Is there any possible way to do this.
Any help would be greatly appreciated.
Zane