Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
155552 王艺博 08三个数排序 C++ Wrong Answer 1 MS 264 KB 236 2026-06-07 15:38:06

Tests(0/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if(a>=b and b>=c){ cout<<a; }else{ if(b>=a and a>=c){ cout<<a; }else{ if(c>=b and b>=a){ cout<<a; } } } return 0; }


Run Info:

------Input------
4 43 85
------Answer-----
85 43 4
------Your output-----
4