Answered step by step
Verified Expert Solution
Question
1 Approved Answer
do not use f string Instructions Create a program that accepts input from the user and outputs information about the test scores: - Input. Poll
do not use f string
Instructions Create a program that accepts input from the user and outputs information about the test scores: - Input. Poll 5 students for their grade on the exam - Output: Print the average score and a message to all students who received an A grade Example Output Below is an example program output. Exam Calculator Please enter the test score for each stud Student score >10 Student score >64 Student score > 90 Congratulations! Student 3 got an A! Student score >98 Congratulations! Student 4 got an A! Student score >72 SUMMARY The average score on this exam was 66.8. Pseudocode Here's some Pseudocode for the Exam Time problem. Print the intro Make a counter variable that totals all exa L00P 5 times Ask and read in the exam score (store i Add the score for this student to the t IF this student's score is at least 90 Print a message congratulating the END LOOP Print the average score (total counter divi Added Fun - Print which student earned the highest score. e.g. "Student 3 earned a 99 and set the curve." - Allow the user to enter the number of students in the class and then read in that many scores. - Allow two classes to record their scores and determine which class got a better average score (make sure you use a function if you attempt this) 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