Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
12182 陈颖钧 求三个数的最大数 C++ 通过 100 1 MS 256 KB 177 2025-07-08 10:51:17

Tests(1/1):


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


测评信息: