Contents

Instructions

In this lab, you will write a program that randomly picks a number between 1 and 50. The user then gets three guesses. If at any point the user guesses the randomly picked number, the user wins. Otherwise, if the user's three turns are up, they've lost.

This program should look something like this (my input is in this color):

********************************************************************************
                           GUESS    A    NUMBER
********************************************************************************

I'm thinking of a number...okay, got it. I'll give you three guesses as to 
what number I have in mind. It's between 1 and 50.

Guess 1: 16

That's too low. Try again.

Guess 2: 35

That's too low. Try again.

Guess 3: 46

That's too high. That's all your guesses! You LOOSE.

You can use this example as your script, or you can do something similar. The important parts are, the program must:

Here is a C++ template to get you started. Copy and paste this into a Sublime Text editor and begin writing your code. Don't forget to add in the include statement mentioned above. You should use an incremental approach: implement one or two lines, then try compiling and test the program.

Optional Challenges

#1: restart

Interested in something a little more complex? Try modifying the program so that the player can restart the game at the end. This should result in a new random number being generated.

#2: hexadecimal

Rather than choosing a decimal between 1 and 50, try a hexadecimal between 1 and 32 (32 in hex. = 50 in decimal). You'll need to look into how to represent hexadecimal numbers in integers and how to read them in / print them out.

Submission

Submit .cpp file to here. You can view the rubric here.

(Back to top)