Question: in c + + Write a for loop to print all NUM _ VALS elements of vector courseGrades, following each with a space ( including

in c++ Write a for loop to print all NUM_VALS elements of vector courseGrades, following each with a space (including the last). Print forwards, then backwards. End with newline. Ex: If courseGrades ={7,9,11,10}, print:
791110
101197
Hint: Use two for loops. Second loop starts with i = courseGrades.size()-1
#include
#include
using namespace std;
int main(){
const int NUM_VALS =4;
vector courseGrades(NUM_VALS);
int i;
for (i =0; i < courseGrades.size(); ++i){
cin >> courseGrades.at(i);
}
/* Your solution goes here */
return 0;
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock 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 Databases Questions!