A New Task
Task:
We would like to write a program to play a number
guessing game with the computer.
The computer will "think" of a number from 1 to 100, and give the player
six guesses to try to find the number.
With each guess, the computer will give the player a hint, telling
them if their guess is too high or too low.
The player should be given the option of playing the game as many times
as they like.
Where do we start?
This time we will take a
top down
approach to designing the program.
We will break the problem down into smaller chunks, or modules,
and attack each one, one at a time.
We still begin with the
five step
process.
to Overview.