Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
97730 李昊宇 07比较大小 C++ Accepted 1 MS 272 KB 199 2024-11-16 14:25:52

Tests(10/10):


Code:

#include<iostream> #include<cmath> using namespace std; int main(){ int c,j; cin>>c>>j; if(c>=j){ cout<<c<<endl; } else{ cout<<j<<endl; } }