Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
2731 黄宜洋 07比较大小 C++ Accepted 0 MS 260 KB 210 2024-01-21 09:13:19

Tests(10/10):


Code:

# include<iostream> using namespace std; int main(){ int a,b; scanf("%d%d",&a,&b); if(a < b){ printf("%d",b); } if(a > b){ printf("%d",a); } return 0; }