#include <iostream> #include<algorithm> #include <random> #include<vector> #include<string> using namespace std; using student = struct { string name; int score; int order; }; int flag; bool compare(const student& student1, const student& student2) { if (student1.score ...