Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
102330 刘殷恺 三实数排序 C++ 解答错误 75 0 MS 256 KB 214 2023-09-13 13:22:18

Tests(6/8):


#include<bits/stdc++.h> #define int long long using namespace std; signed main() { int a[5]={0}; for(int i=1;i<=3;++i) cin>>a[i]; sort(a,a+4); for(int i=1;i<=3;++i) cout<<a[i]<<" "; return 0; }


测评信息: