Guest User

Untitled

a guest
Jun 24th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     while(true)
  8.     {
  9.         string answer;
  10.         cout << "Question 1: " << "What is test?" << endl;
  11.         getline(cin, answer);
  12.         if (answer == "answer")
  13.         {
  14.             cout << "Correct" << endl;
  15.         }
  16.     }
  17.     return 0;
  18. }
Add Comment
Please, Sign In to add comment