Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
59723 lihaocheng 整数的排序 C++ 通过 0 MS 252 KB 268 2024-12-27 18:51:33

Tests(1/1):


#include <bits/stdc++.h> using namespace std; int a[6]; bool cmp(int x,int y){ if(x<y)return 1; else return 0; } int main(){ for(int i=0; i<5;i++){ cin>>a[i]; } sort(a,a+5,cmp); for(int i=0;i<5;i++){ cout <<a[i]<<" "; } return 0; }


测评信息: