| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 149747 | 徐康浩 | 求三个数的最大值 | C++ | Accepted | 1 MS | 272 KB | 216 | 2026-03-16 17:00:23 |
#include <iostream> using namespace std; int main(){ int x,y,z; cin>>x>>y>>z; if(x>y&&x>z){ cout<<"max="<<x<<endl; }else if(y>x&&y>z){ cout<<"max="<<y<<endl; }else{ cout<<"max="<<z<<endl; } }