问题标题: 酷町堂:1547

0
0
已解决
江齐悦
江齐悦
高级光能
高级光能
#include<iostream>
#include<algorithm>
using namespace std;
bool cmp(int x,int y){
    return x>y;
}
int main(){
int n,m,a[101];
cin>>n>>m;
for(int i=1;i<=n;i++){
cin>>a[i];
}
sort(a+1,a+1+n);
cout<<a[m];
return 0;
}

我的代码为什么错了?

WA


0
已采纳
周琪岳
周琪岳
资深光能
资深光能

1.好好写,用CMP(同意缪鲲鹏

2.偷懒,倒叙输出

0
0
0
0
刘欣然
刘欣然
高级光能
高级光能

怎么写,这一题,看不懂

我要回答