Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
102334 刘殷恺 三实数排序 C++ 通过 100 0 MS 256 KB 217 2023-09-13 13:23:07

Tests(8/8):


#include<bits/stdc++.h> #define int long long using namespace std; signed main() { double 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; }


测评信息: