Question #24860

Write a program that ask the questions “Do you know the capital of ALASKA”. The
program should display the statement “WRONG!!Please try again” when incorrect
answer is given and it stop until the user input the correct answer.
Note : Capital of ALASKA is Juneau

Expert's answer

# include <iostream>
# include <string >

using namespace std;

int main(){

string a;
while(true){
cout<<"Enter Capital of Alyska:";
cin>>a;
if (a.compare("Juneau")==0){cout<<"YES!\n"; break;}
cout<<"Wrong, try again\n";
}
system("PAUSE");
return 0;
}
LATEST TUTORIALS
APPROVED BY CLIENTS