Originally posted by Benno
Originally posted by DoTheFandango
Code:
void change ()
{
string cname;
cout << "What is your Country's Name?"<<endl;
cin >> cname;
if (cname == "USA")
cout << "needs to change everything" <<endl;
else
cout << doesn't suck" << endl;
}

Comment