Write C++ program that allows the user to do the following: a- Enter 53 students marks, the marks should be between 30 a
Posted: Fri May 20, 2022 2:44 pm
Write C++ program that allows the user to do the following: a- Enter 53 students marks, the marks should be between 30 and 100, if mark is not in the range let the user input a new one b- find the average of students marks c- if one mark is less than 60, the program should print "Warning: This student fails" d- if the average of students is less than 70, the program should print "poor results". Otherwise, the program should print "good results" Use only while loop and if condition