B 每日一报把异常温度的都存起来,按要求排序就行 #include<bits/stdc++.h> using namespace std; struct A{ int t; int num; float te; }a[110]; bool cmp(A b,A c){ if(b.t>c.t)return 1; else if(b.t<c.t)return 0; else{ if(b.te>c.te)return 1; else if(b.te<c.te)return 0; ...