+ 1
Create a program tht wll calculate the average marks of 10 learners and with the average it wll determine with symbol they got A
Create a program tht wll calculate the average marks of 10 learners and with the average it wll determine with symbol they got A=75+ B 60-74 C 50-59 D 40- 49 0-39 fail
3 Answers
+ 1
it is quiet easy by using array, with for loop
+ 9
Have you tried making it yourself?
+ 1
I could easily do this in python, but Iâm not quite so knowledgeable in C++. Itâs not too hard though. Make a variable for each student, add all of their scores up in another variable. Divide this by the amount of numbers added. Then use if statements to decide where the student belongs.