C Create a program using functions that does the following 1
C++
Create a program using functions that does the following:
1. Computes and displays the final grade for a course that has:
a. Three homework assignments, worth a total of 25% of the final grade
b. Three exams, each exam is worth 10% of the final grade
c. One final exam, worth 25% of the final grade
d. A final project worth 20% of final grade
2. Prompts user of your program to input the grades indicated above, in that order.
3. Display the final numeric grade.
4. Display the letter grade
5. Loop if necessary for next student record.
A 90 - 100%
B 80 - 89%
C 70 - 79%
D 60 - 69%
F Below 60
Create and test each of the functions listed in the specification section
Create a main() that calls your previously tested functions to calculate grades for 0 to many students.
Sample Output:
Student 0:
Homework 1 grade:90
Homework 2 grade:90
Homework 3 grade:90
Test 1 grade:90
Test 2 grade:90
Test 3 grade:90
Final Exam grade:90
Final Project: 90
Student 0: Final grade: 90 Letter grade: A
Solution
include<stdio.h>
include<conio.h>
void main()
i= 1 to 10
grade>70
awarded = A
grade<70
awarede = B
