北京大學機試-小白鼠排隊

#include<bits/stdc++.h> using namespace std; const int maxn = 105; struct Mouse{ int w;//重量 char color[15];//顏色 }; Mouse M[maxn]; bool cmp(Mouse x,Mouse y){ return x.w>y.w; } int main(){ int N;
相關文章
相關標籤/搜索