How could this be work??
if (boo=="rat");
{
SlowPrint("The Rat Tells: ", 25);
Sleep(500);
cout << rat;
}
if (boo=="horse");
{
SlowPrint("The Horse Tells: ", 25);
Sleep(500);
cout << horse;
}
if (boo=="rabbit");
{
SlowPrint("The Rabbit Tells: ", 25);
Sleep(500);
cout << rabbit;
}
if (boo=="dragon");
{
SlowPrint("The Dragon Tells: ", 25);
Sleep(500);
cout << dragon;
}
if (boo=="dog");
{
SlowPrint("The Dog Tells: ", 25);
Sleep(500);
cout << dog;
}
if (boo=="tiger");
{
SlowPrint("The Tiger Tells: ", 25);
Sleep(500);
cout << tiger;
}
if (boo=="snake");
{
SlowPrint("The Snake Tells: ", 25);
Sleep(500);
cout << snake;
}
if (boo=="ox");
{
SlowPrint("The Ox Tells: ", 25);
Sleep(500);
cout << ox;
}
if (boo=="rooster");
{
SlowPrint("The Rooster Tells: ", 25);
Sleep(500);
cout << rooster;
}
if (boo=="pig");
{
SlowPrint("The Pig Tells: ", 25);
Sleep(500);
cout << pig;
}
if (boo=="sheep");
{
SlowPrint("The Sheep Tells: ", 25);
Sleep(500);
cout << sheep;
}
if (boo=="monkey");
{
SlowPrint("The Monkey Tells: ", 25);
Sleep(500);
cout << monkey;
}
Why not?
Last edited on