Lab 3โƒฃ.0โƒฃ Guessing Game

In this lab, you will use conditional statements and variables to build a simple number guessing game.

Section 1 - Iโ€™m Thinking of a Numberโ€ฆ

You will write a SNAP program to choose a random number between 1 and 10 and then ask the user to guess a number.

If the userโ€™s guess matches the random number, the user wins. If not, the user loses. In either case, the user should be shown a message indicating whether she won or lost and the secret random number should be revealed.

Section 2 - Game Upgrades