Page 1 of 1

Develop a C++ class header file and implementation file that will serve as a number guessing game Create a Guesser class

Posted: Tue Jul 05, 2022 10:26 am
by answerhappygod
Develop a C++ class header file and implementation file thatwill serve as a number guessing game
Create a Guesser class that containsthe following data and functionality:
Make sure to follow all OOP encapsulation and data hiding ruleswe discussed in lecture and previous homework assignmentsSubmit your solution as a plain ZIP file that containsthe three files your program needs to executeproperly
Match your output to the following example programexecution:Guess my number, won't ya?!Enter your guess: 7Nope! That's not it!Enter your guess: -8Nope! That's not it!Enter your guess: 0Who would ever pick zero? That would be cheating orsomething!Just for that I'm going to think up a new number for you!Enter your guess: 5Nope! That's not it!Enter your guess: 4Nope! That's not it!Enter your guess: 7You got it! Lucky you! I'm outta here!<PROGRAM EXECUTION ENDS>