Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
69112 sh25_ganzy 最大数输出 C++ 通过 0 MS 240 KB 237 2025-10-10 19:53:46

Tests(1/1):


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


测评信息: