-
Notifications
You must be signed in to change notification settings - Fork 1
Assignment 2: Guessing Game
Jace Bennett edited this page Nov 20, 2013
·
2 revisions
##Problem: Create a command line application that lets a user play the guessing game. When the program starts, it will choose a number at random between 1 and 1000. The user will have 10 chances to guess the number. After each guess, one of 4 things will happen:
- The user guessed correctly. The program will congratulate them and exit.
- The user guessed incorrectly, and has no guesses remaining. The program will reveal the selected number, and inform the player she lost and exit.
- The user guessed incorrectly, but has guesses remaining:
- The guess was too high. The program should tell the user to guess lower and prompt for the next guess.
- The guess was too low. The program should tell the user to guess higher and prompt for the next guess.
##New Concepts
- Random Numbers
- Collecting user input
##Worked Example
A first cut solution can be found here
Afterwards, we made some changes
- [We introduced a GuessingGame class] (../tree/10fa980d77bbb91d51f09616c9ee28a8732cb95a/GuessingGame)
- [We split up the logic into methods in the new class] (../blob/860ffed495bba6a9bd984ab49882e8c6ae541c90/GuessingGame/GuessingGame.cs)