Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
12172 罗炜翰 两数比大小 C++ 通过 100 1 MS 272 KB 195 2025-07-07 17:35:26

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; cin>>a>>b; cout<<q(a,b); return 0; }


测评信息: