Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
42538 惠子铭 求第k大数 C++ 解答错误 1 MS 240 KB 403 2024-03-01 15:41:31

Tests(0/1):


#include<bits/stdc++.h> using namespace std; int n,l[15];//数组开大点,因为 L[10]只有 L[0]~L[9] 共十个 int main() { n=10; for(int i=1;i<=n;i++){ cin>>l[i]; } for(int i=1;i<=n;i++){ for(int j=1;j<=n-i;j++){ if(l[j]>l[j+1])swap(l[j],l[j+1]); } } for(int i=1;i<=n;i++) cout<<l[i]<<" "; cout<<endl; }


测评信息: