Question: 1) Write a C++ program to allow the user to enter the score of 8 courses and store them in an array. Then display
1) Write a C++ program to allow the user to enter the score of 8 courses and store them in an array. Then display the scores. Count how many students their scores are greater than 60, then print Pass. Count how many students their scores less than 60 then print Fail (using a loop over the array elements) based on the following output sample. Output: Enter 8 values of scores: 90 65 49 70 55 88 73 50 The scores are: 90 65 49 70 55 88 73 50 The total number of students whose scores greater than 60: 5 Pass The total number of students whose scores less than 60: 3 Fail
Step by Step Solution
There are 3 Steps involved in it
Heres a simple C program that fulfills the requirements include int main const int numCourse... View full answer
Get step-by-step solutions from verified subject matter experts
