Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
12173 罗炜翰 求三个数的最大数 C++ 通过 100 1 MS 256 KB 205 2025-07-07 17:35:54

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int q(int x,int y){ if(x>y) return x; else if(y>x) return y; } int main(){ int a,b,c; cin>>a>>b>>c; cout<<q(a,q(b,c)); return 0; }


测评信息: