Guess is a class that has the following structure:
Guess(Minimum, Maximum, Target_number, Filename) Inputs:
- Minimum - Integer (0 < Minimum < Maximum), -1 for random game.
- Maximum - Integer (Minimum < Maximum < INF)
- Target_Number - Integer (Minimum <= Target_number <= Maximum)
- Filename - String (Must specify file extension. IE. filename.txt, saved.csv, etc) Can be NONE or blank.
If you want to play a random game, set Minimum to -1.
If you want to set a range, but random target within set Target_number to -1
To run call function Guess.playGame()
Automated guessing function (recursive): call Guess.ai_Play()
simple game with error handling