The Riddler


Goal:

Ask the user some riddles!

Steps:

  1. Make a variable to hold the player's score.
    int score = 0;
    
  2. Ask the player a riddle. Here are some ideas.
  3. If they get the answer right, pop up "correct!" and increase the score by one
    score++;
    
  4. Otherwise, tell them they are "wrong" and also tell them the correct answer
  5. Add some more riddles