Advertisement
Tavxela

Untitled

Oct 18th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. int main() {
  5. int score, mistake;
  6. string input1;
  7. cout << "It's a trivia about capital cities \nWin condition: Score >= 5 \nLose: Score < 5 OR 2 Mistake" << endl;
  8. cout << "What's the capital of United States of America? " << endl;
  9. cin >> input1;
  10. switch (input1) {
  11. case "ottawa":
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement