Using C++, create a simple program that does the following:
Has a menu to allow users to select and run multiple different actions.
Allow the user to enter a name and get custom messages based upon the name entered. Use the names of your friends and/or tutor, and write a custom message for each.
When you collect the name(s) from the user, do one more action - convert the collected name either to UPPER case or lower case, by your choice (See Tips section below for the two functions of SplashKit you could call for this purpose).
Allow the user to play a "guess that number" game, guessing a value between 1 and 100.
In this task, make sure that you demonstrate the proper choice and proper use of:
- An if statement with else branch, and nested if...else...if structures
- A switch/case statement to run actions based on the menu response
- A while loop to control repetitions in the "guess that number" game
- A do while loop to repeat the menu until the user quits.