Question
Find the errors in following program. //This program uses a switch statement to assign a // letter grade (A, B, C, D, or F) to
Find the errors in following program.
//This program uses a switch statement to assign a
// letter grade (A, B, C, D, or F) to numeric test score.
#include
uisng namespace std;
int main()
{
int testScore;
cout<<"Enter your test score and I will tell you ";
cout<<"the letter grade you earned: ";
cin>>testScore;
switch (testScore)
{
case (testScore < 60)
cout<<"Your grade is F. ";
break;
case (testScore <70)
cout<<"Your grade is D. "
break;
case (testScore <80)
cout<<"Your grade is C. ";
break;
case (testScore < 90)
cout<<"Your grade is B. ";
break;
case (testScore <= 100)
cout<<"Yourgrade is A. ";
break;
default:
cout<<"That score isn't valid ";
return 0;
}
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