#include <iostream>
usingnamespace std;
int main()
{
char Answer;
char a, b, c, d;
cout<<"you will be givin a short Exam of 10 questions \n"<<endl;
cout<<"Press enter after each question is answered \n"<<endl;
cout<<endl;
cout<<endl;
do
{
cout<<"Question 1"<<endl;
cout<<"where was Jason Born? \n\n"<<endl;
cout<<endl;
cout<<"(a) - Chicago?"<<endl;
cout<<"(b) - Atlanta?"<<endl;
cout<<"(c) - Pheonix?"<<endl;
cout<<"(d) - Tucson?" <<endl;
cin>>Answer;
cin.sync();
cin.get();
if (Answer==d)
{
cout<<"Thats Correct!"<<endl;
}
else
cout<<"Try Again"<<endl;
}while (Answer==a,b,c);
return 0;
}