Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
143707 马俊潇 比较三个数大小II C++ Wrong Answer 0 MS 268 KB 234 2026-01-17 15:27:00

Tests(0/1):


Code:

#include<iostream> using namespace std; int main(){ int a,b,c,x,z,d; cin>>a>>b>>c; if(a<=b){ x=a; }if(x<=c){ x=x;} if(b<=c){ z=b; d=c;}else{ z=c; d=b;} cout<<x<<z<<d; return 0;}


Run Info:

------Input------
346 423 123
------Answer-----
123 346 423
------Your output-----
346123423