I'm going through the book Beginning C++ Through Game Programming and I am dealing with an exercise that wants me to rewrite the menu chooser program that I created in the chapter. However, instead of using a switch/case it wants me to use an enumeration to represent the difficulty levels. My variable choice has to stay as an int. I have found several answers to this, but they just involve placing enum GAMEMODE{EASY, NORMAL, HARD} at the top of the program, but that doesn't actually use the enum since the switch is still in the program. I'm just looking for an honest answer. I'm new to C++ and I'm looking to do things the right way and understand it. Here is the original code