Question: c++!! CS 215-Fall 2018 Lab 4 Learning Objective: Declaration and use of two parallel arrays to solve a problem General Description You are to write
c++!!

CS 215-Fall 2018 Lab 4 Learning Objective: Declaration and use of two parallel arrays to solve a problem General Description You are to write a small grading program for an instructor, used to enter quiz scores and calculate average scores for a group of students. First, ask the user to enter the number of students. You may assume the user enters a number between 1 and 20 Next, ask the user to enter the number of quizzes. You may assume the user enters a number between 1 and 10 For each student: Ask the user to enter the student's name. Since the name may have spaces, use getline() instead of cin >>to ask for the name. You will probably have to use cin.ignore() to get this to work correctly. Hint string aStringwithSpaces; cout "Enter a string with spaces cin.ignore(); getline (cin, aStringwithSpaces); // needed when used after a: cin >> numericVariable; Store the entered name in an array of student names - Ask the user to enter the quiz scores for this student. Print the quiz number in the prompt (hint: cout
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
