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

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(a<=c){ x=a;} 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-----
346<123<423