Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
145824 潘明泽 07比较大小 C++ Accepted 0 MS 268 KB 183 2026-01-25 19:09:41

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int n1,n2; int main(){ cin>>n1>>n2; if(n1>n2){ cout<<n1; }else{ cout<<n2; } return 0; }