- liuziming 的博客
ren
- @ 2025-8-28 11:34:13
#include<bits/stdc++.h> using namespace std; struct Student{ int chinese,math,english,index; Student(int c,int m,int e,int idx) :chinese(c),math(m),english(e),index(idx){} }; bool cmp(const Student& a, const Student& b){ int totalA }