#include <iostream>#include <vector>#include <algorithm>using namespace std;struct Student {string name;vector<int> scores;int totalScore; Student(string n, vector<int> s) : name(n), scores(s), totalScore(0) { for (int score : scores) { totalScore += score; ...