Answer to Question #24860 in C++ for hani

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
1
Expert's answer
2013-02-22T06:08:05-0500
# 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;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS