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

Step: 3

blur-text-image

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

Databases On The Web Designing And Programming For Network Access

Authors: Patricia Ju

1st Edition

1558515100, 978-1558515109

More Books

Students also viewed these Databases questions

Question

State the importance of motivation

Answered: 1 week ago

Question

Discuss the various steps involved in the process of planning

Answered: 1 week ago

Question

What are the challenges associated with tunneling in urban areas?

Answered: 1 week ago

Question

What are the main differences between rigid and flexible pavements?

Answered: 1 week ago

Question

What is the purpose of a retaining wall, and how is it designed?

Answered: 1 week ago