用结构体存储日期、学号和体温,放在一个数组里(体温<38.0直接忽略掉),自己写一个比较的函数(按题中的要求写就好),然后用sort排序输出就完了,上代码: #include <bits/stdc++.h> using namespace std; struct node { int date; int number; float tem; //体温 }v; bool cmp(const node&p,const node&q) { if(p.date==q.date&&p.tem==q.tem){ ...