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 

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

1 Expert Approved Answer
Step: 1 Unlock

Heres a simple C program that fulfills the requirements include int main const int numCourse... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!