subject

12.17 Prog Assignment 3 - 3: Letter Grade
In this program, you need to find the average letter grade. It calculate three student scores and then, converts the numerical average into a letter grade A-F.

The letter grade scale as follow:

90 - 100 > A
80 - 89.99 --> B
70 - 79.99 --> C
60 - 69.99 --> D
0 - 59.99 --> F
To complete the program, follow the steps:

(1) Prompt the user to input 3 student scores, then output them. (from 0 - 100). Note, the format of the scores, use %0.2f.(Submit for 2 points)

Enter the 1st score:
92.5
Enter the 2nd score:
87.3
Enter the 3rd score:
83.4
The scores entered are: 92.50, 87.30 and 83.40
(2) Extend the program to output the average of the 3 scores entered in step 1. Note, use %0.2f for the format of the average. (Submit for 3 points, so 5 points total)

Enter the 1st score:
92.5
Enter the 2nd score:
87.3
Enter the 3rd score:
83.4
The scores entered are: 92.50, 87.30 and 83.40
The average score is: 87.73
(3) Extend again to output the letter grade based on the result in step 2. Hint: use if statement (Submit for 5 points, so 10 points total)

Enter the 1st score:
92.5
Enter the 2nd score:
87.3
Enter the 3rd score:
83.4
The scores entered are: 92.50, 87.30 and 83.40
The average score is: 87.73
Your grade is B
---
I need to use python to program this can someone help

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 03:50
Q-1 which of the following can exist as cloud-based it resources? a. physical serverb. virtual serverc. software programd. network device
Answers: 1
question
Computers and Technology, 23.06.2019 09:30
Given a link with a maximum transmission rate of 32.8 mbps. only two computers, x and y, wish to transmit starting at time t = 0 seconds. computer x sends filex (4 mib) and computer y sends filey (244 kib), both starting at time t = 0. statistical multiplexing is used, with details as follows packet payload size = 1000 bytes packet header size = 24 bytes (overhead) ignore processing and queueing delays assume partial packets (packets consisting of less than 1000 bytes of data) are padded so that they are the same size as full packets. assume continuous alternating-packet transmission. computer x gets the transmission medium first. at what time (t = ? ) would filey finish transmitting? give answer in milliseconds, without units, and round to one decimal places (e.g. for an answer of 0.013777 seconds you would enter "13.8" without the quotes)
Answers: 3
question
Computers and Technology, 24.06.2019 17:40
Create a file called favorite_foods, and list your favorite foods, entering five or six or more. press enter after each favorite food so it appears on its own line (make certain you also press enter after the final food item). after the file is created, add two more foods you like that are not on the list (press enter after the final food item). view the list of foods to make certain the two items you added appear at the end of the list
Answers: 2
question
Computers and Technology, 24.06.2019 22:00
Is the process of organizing data to reduce redundancy. a. normalization b. primary keying c. specifying relationships d. duplication
Answers: 1
You know the right answer?
12.17 Prog Assignment 3 - 3: Letter Grade
In this program, you need to find the average letter...
Questions
Questions on the website: 13722363