Nov 18, 2004 22:14
#include
#include
using namespace std;
void main(void)
{
do{
for(int i = 0; i <= 50; i++)
{
cout << i <<
endl;
if(i == 50)
{
cout << " out of \n";
for(int j = 0; j <= 50; j++)
{
cout << j << endl;
}
cout << " without even STUDYING!!!";
}
}
cout << "Who is the master? ";
string master;
cin >> master;
}while(master == "Andrew");
}