#include <iostream> #include <algorithm> #include<string> using namespace std; struct student { string name; int score; }; bool cmp0(student x, student y) { return x.score > y.score; } int main() { ...