using the knowledge you learned in Chapter 6, now you need to expand the functio
ID: 3655926 • Letter: U
Question
using the knowledge you learned in Chapter 6, now you need to expand the functions of your software. The software should provide an option list for user, telling them: 1) If they input number 1, they will be able to see the average grade of math class. 2) If they input number 2, they will be able to see the highest grade in math class. 3) If they input number 3, they will be able to see the lowest grade in math class. 4) If they input number 4, they will be able to see the middle grade in math class. 5) If they input number 5, they will be able to find some specially statistic information. That is, to find how many students got A, how many students got B, C, D, and F. a. Assuming A is >= 90, B is >=80, C is >= 70, D is >= 60, F is below 60. b. Assuming students input a value within 0-100.Explanation / Answer
in C it's as follows #includevoid main() { int n, count; float sum = 0, x, avg; printf(" Enter How Many Numbers : "); scanf("%d", &n); for(count = 1; countRelated Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.