| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 140602 | 范恒恺 | 比较三个数大小II | C++ | Wrong Answer | 0 MS | 268 KB | 195 | 2025-12-17 19:38:20 |
#include<bits/stdc++.h> using namespace std; int main(){ int n=3; int a[n]; for(int i=1;i<=n;i++){ cin>>a[i]; } sort(a,a+n); for(int i=1;i<=n;i++){ cout<<a[i]<<" "; } cout<<"\n"; }
------Input------
346 423 123
------Answer-----
123 346 423
------Your output-----
423 716610248 123