Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
6249 | baodiyuan | 输入三个数,输出其中最大的数 | C++ | 编译错误 | 0 MS | 0 KB | 234 | 2022-11-27 17:20:05 |
#include <iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a>b>c){ cout<<a<<endl; }if(b>a>c) cout<<b<<endl; }else{ cout<<c<<endl; } return 0; }