Loading

摘要: 基础练习 数列排序 #include<bits/stdc++.h> using namespace std; const int N=201; int f[N]; int n; int main() { cin>>n; for(int i=0;i<n;i++) cin>>f[i]; sort(f,f 阅读全文
posted @ 2021-11-12 19:08 longwind7 阅读(72) 评论(0) 推荐(1)