Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a korn shell program that will continually allow the user to input a numeric average for a number of students. After each grade is
Write a korn shell program that will continually allow the user to input a numeric average for a number of students. After each grade is input the program will output the letter grade for that student. It will continue to ask for more grades until the user enters -1 to stop. Once the user enters -1, have program output the numeric average for all students.
For example, a sample run could be:
What is the next student's numeric average? 82 That student got a B for the semester. What is the next student's numeric average? 77 That student got a C for the semester. What is the next student's numeric average? 86 That student got a B for the semester. What is the next student's numeric average? 62 That student got a D for the semester. What is the next student's numeric average? 95 That student got a A for the semester. What is the next student's numeric average? -99 The average for all students is 80.4
Finish.
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