Question: Write a program that reads a list of numeric grades and assigns letter grades based upon the following scheme: The grade is A if score
Write a program that reads a list of numeric grades and assigns letter grades based upon the following scheme: 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. in python
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
