Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
12218 A班-袁誉晏 两数比大小 C++ 通过 100 1 MS 268 KB 181 2025-07-08 16:39:11

Tests(1/1):


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


测评信息: