/*
Written by HAYZAM SHERIF ! USE IT HOWEVER YOU WANT :D
*/
#include <iostream>
#include <string>
using namespace std;
char name[100];
wchar_t words[100];
int choice;
int main()
{ //main
string userstring;
string mystring;
mystring = "THIS GAME IS COOL";
cout<<"Hello Welcome to the Code Game!"<<endl;
cout<<"--------------x----------------"<<endl;
cout<<endl;
cout<<"Please enter yourname : ";
cin>>name;
cout<<endl;
cout<<"Welcome to the code game, ";
cout<<name<<endl;
cout<<"1. New game"<<endl;
cout<<"2. Level Select"<<endl;
cout<<"3. About"<<endl;
cout<<"--------------x----------------"<<endl;
cout<<endl;
cout<<"Please enter choice : "<<endl;
cin>>choice;
if (choice == 1)
{
cout<<"New game huh? Cool ! Let's start with some small codes!"<<endl;
cout<<endl;
cout<<endl;
cout<<"1 2 3"<<endl;
cout<<"ABC DEF GHI"<<endl;
cout<<"4 5 6"<<endl;
cout<<"JKL MNO PQR"<<endl;
cout<<"7 8 9"<<endl;
cout<<"STU VXY Z "<<endl;
cout<<endl;
cout<<endl;
cout<<"I know there is no 'w' it is supposed to be like that."<<endl;
cout<<endl;
cout<<"While playing this game please turn on your caps lock."<<endl;
cout<<endl;
cout<<endl;
cout<<"Try not to use Paper/Pen."<<endl;
cout<<endl;
cout<<"Here is your first code : [7337] [3152] [37] [1554] "<<endl;
cout<<endl;
cout<<endl;
cout<<"The sentence is : ";
cin>>userstring;
cout<<endl;
if (userstring.compare("THIS GAME IS COOL"))
{
cout<<"You're a right! Congratulations!"<<endl;
//if for within if answer
}
else
{
cout<<"This is WRONG! No bharat ratna for you!"<<endl;
} //else for within if answer
} // main if
else if (choice == 2)
{//else if for real choice (2)
cout<<"Please select Level"<<endl;
} //else if for real choice (2)
else if(choice == 3)
{ //else if for real choice (3)
cout <<"This game was made by HAYZA<! "<<endl;
} //else if for real choice (3)
else
{ //else for no real choice
cout << "Sorry this is not a real choice."<<endl;
} //else for no real choice
system("PAUSE");
return 0;
} //main
The error that I get is that, the program show's me that my sentence is correct even when it's wrong! What will I do ? Any help is really appretiated, thanks!