Question
For C++ write a program that contains a do...while loop. the loop should continue until the user types N or n to quit. inside this
For C++ write a program that contains a do...while loop. the loop should continue until the user types N or n to quit.
inside this loop should be another loop that loops while a bool variable is FALSE
have the user enter a letter grade (a, b, c, etc). if the letter grade is invalid, the loop should notify the user and have them reenter the number. otherwise the the loop stops
inside the loop, have a switch statement.
the switch statement should set the validity of the number
the switch should output the number range for the given grade.
for example, if the user enters B, the program should output
"The number range for the grade of B is 80-89"
the program should be able to handle upper and lower case letters
This is what I have but I can not get it all to work can you help...
1 #include
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started