HELP Why wont this work?
// Test.cpp : Defines the entry point for the console application.
//
#include <iostream>
using namespace std;
#include "Apstring.h"
#include "apstring.cpp"
int main()
{
apstring Game;
apstring rndnum;
apstring rdy;
system("color a");
system("Echo GREETINGS PROFESSOR FALKIN");
cout << endl;
cout << "WOULD YOU LIKE TO PLAY A GAME? ";
cin >> Game;
if ( Game == "Yes" || "yes") {
cout << "HOW ABOUT A NICE GAME OF random numbers? " ;
cin >> rndnum;
if ( rndnum == "Yes" || "yes") {
system("CLS");
int num = rand();
int Guess;
cout << "READY?";
cin >> rdy;
if (rdy == "Yes" || "yes") {
cout << "GUESS A NUMBER BETWEEN 1 --- 25. ";
cin >> Guess;
if ( Guess == num ) {
system("ECHO YOU WIN! ");
system("COLOR B");
system("COLOR B");
system("COLOR B");
system("COLOR B");
system("COLOR B");
system("COLOR B");
system("COLOR B");
system("COLOR B");
system("COLOR B");
system("COLOR B");
system("COLOR B");
system("COLOR C");
system("COLOR C");
system("COLOR C");
system("COLOR C");
system("COLOR C");
system("COLOR C");
system("COLOR C");
system("COLOR C");
system("COLOR C");
system("COLOR C");
system("COLOR A");
}else {
system("ECHO NOPE")
}
}else {
system("ECHO BYE!")
}
}else {
system("Echo BYE!")
}
}else {
system("echo BYE!")
}
}else {
system("echo BYE!")
}
system("pause");
return 0;
}