Run ID Author Problem Lang Verdict Time Memory Code Length Submit Time
69112 sh25_ganzy 最大数输出 C++ Accepted 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; }


Judgement Protocol: