Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

write a program that reads a list of numeric grades and assigns letters based upon the following sequence scheme python: The grade is A if

write a program that reads a list of numeric grades and assigns letters based upon the following sequence scheme python:

The grade is A if score >= best 10 The grade is B if score >= best 20 The grade is C if score >= best 30 The grade is D if score >= best 40 The grade is F otherwise. where best is the highest score in the list. The program should also indicate which student had the highest score and which student had the lowest score. Here is exactly how the input and output should be formatted: Enter scores: 40 55 70 58 Student 0 score = 40 (C) Student 1 score = 55 (B) Student 2 score = 70 (A) Student 3 score = 58 (B) The student with the highest score is Student 2. The student with the lowest score is Student 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

More Books

Students also viewed these Databases questions

Question

differentiate the function ( x + 1 ) / ( x ^ 3 + x - 6 )

Answered: 1 week ago

Question

How do Data Types perform data validation?

Answered: 1 week ago

Question

How does Referential Integrity work?

Answered: 1 week ago