Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
120987 | 王奕诺 | 08比较三个数的大小 | C++ | Accepted | 1 MS | 272 KB | 247 | 2025-06-02 19:00:11 |
#include <iostream> #include <cstdio> #include <iomanip> #include <cmath> using namespace std; int main(){ int x,y,z; cin>>x>>y>>z; if(x>y&&x>z) cout<<x; if(y>x&&y>z) cout<<y; if(z>x&&z>y) cout<<z; }