Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
90137 zhouyuchen 求3个数中的最大数 C++ 通过 100 0 MS 252 KB 162 2024-02-23 19:30:30

Tests(6/6):


#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e,f; cin>>a>>b>>c; d=max(a,b); e=max(b,c); f=max(d,e); cout<<f; return 0; }


测评信息: