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
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