Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
8533 毕潇天 最大数输出 C++ 通过 0 MS 240 KB 230 2023-02-10 15:53:40

Tests(1/1):


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


测评信息: