Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advances In Spatial Databases 2nd Symposium Ssd 91 Zurich Switzerland August 1991 Proceedings Lncs 525

Authors: Oliver Gunther ,Hans-Jorg Schek

1st Edition

3540544143, 978-3540544142

More Books

Students also viewed these Databases questions

Question

Discuss consumer-driven health plans.

Answered: 1 week ago