Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
42950 yuzhengxun 最大数输出 C++ 通过 1 MS 248 KB 197 2024-03-03 19:40:31

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; }


测评信息: