Question: Implement a complete program that uses a switch statement in C + + . Prompt the user for the score ( assumed to be an

Implement a complete program that uses a switch statement in C++.
Prompt the user for the score (assumed to be an integer between 0 and 10 inclusive).
Read the user input into a variable score of type int.
Also declare a variable called grade of type char.
Assign one of the values 'A','B','C','D,'F' or 'X' to grade based on the value of score.
If score is 0,1,2,3 or 4 the grade is 'F'
If the score is less than 5 or 6 the grade is ''D'.
If the score is 7 the grade is 'C'.
If the score is 8 the grade is 'B'.
If the score is 9 or 10, the grade is 'A'.
If the score is any other value the grade is 'X'.
IMPORTANT: To demonstrate that you know how to use the keyword break effectively, you should have combine cases where appropriate by having only five uses of break in your code and one use of default.
After the switch statement, output the users grade e.g.
Your grade is 'A'.
Or
Invalid score.
(That's for that case where grade has the value 'X')
Below are sample outputs from six separate runs of the program to illustrate. Your output should be identical given the same inputs.
Do not use a loop.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!