Given two vectors, studentNames that maintains a list of students, and studentScores that has a list of the scores for each student, which XXX and YYY prints out only the student names whose score is above 80? Choices are in the form XXX/ YYY.
vector studentNames(NUM_STUDENTS);
vector studentScores(NUM_STUDENTS);
for (i = 0; i < studentScores.size(); ++i) {
if (XXX > 80) {cout << YYY << " ";
studentScores.at(i) / studentScores.at(i)
studentNames.at(i) / studentScores.at(i)
studentScores.at(i) / studentNames.at(i)
studentNames.at(i) / studentNames.at(i)
studentScores.at(i) / studentNames.at(i)