Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
37665 yuzhengxun 最大数输出 C++ 通过 0 MS 236 KB 197 2024-01-22 16:05:00

Tests(1/1):


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


测评信息: