Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
125164 黄子轩 最大值 C++ 通过 100 0 MS 244 KB 227 2024-01-23 16:30:23

Tests(2/2):


#include<bits/stdc++.h> using namespace std; int main() { double p,s,t; cin>>p>>s>>t; if(p>=s&&p>=t){ cout<<p; } else if(s>=p&&s>=t){ cout<<s; } else if(t>=s&&t>=p){ cout<<t; } }


测评信息: