Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
37828 yuanhaoxiang 最大数输出 C++ 通过 0 MS 240 KB 267 2024-01-23 14:53:51

Tests(1/1):


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


测评信息: