Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
125137 | 黄子轩 | 最大值 | C++ | 解答错误 | 0 | 0 MS | 236 KB | 251 | 2024-01-23 16:27:54 |
#include<bits/stdc++.h> using namespace std; int main() { double p,s,t; cin>>p>>s>>t; if(p>=s){ if(p>=t){ cout<<p; }} else if(s>=p){ if(s>=t){ cout<<s; }} else if(t>=s){ if(t>=p){ cout<<t; }} }