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 and 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 ABCDF or X to grade based on the value of score.
If score is or the grade is F
If the score is less than or the grade is D
If the score is the grade is C
If the score is the grade is B
If the score is or 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 eg
Your grade is A
Or
Invalid score.
Thats 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
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
