Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144799 c13 比较三个数大小II C++ Wrong Answer 0 MS 268 KB 185 2026-01-24 18:51:16

Tests(0/1):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a[3]; scanf("%d", a+3); sort(a,a+3); for(int i=0;i<=2;i++)cout<<a[i]<<' '; cout<<endl; return 0; }


Run Info:

------Input------
346 423 123
------Answer-----
123 346 423
------Your output-----
-1927248552 32765 4827735