Question: Write a C++ program to allow the user to enter the score of 6 courses and store them in an array. Then display the scores

Write a C++ program to allow the user to enter the score of 6 courses and store them in an array. Then display the scores and count how many students whose scores are out of this range 50 to 70 (inclusive 50 and 70) (using a loop over the array elements) based on the following output sample. Output: Enter 6 values of scores: 95 84 76 46 58 62 The scores are: 95 84 76 46 58 62 The total number of students who their scores are between 80 and 100 is: 4 Write a C++ program to display the following pattern (using nested while loop). 23 25 27 29 31 23 25 27 29 31 23 25 27 29 31 23 25 27 29 31 23 25 27 29 31
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
