Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
543 曾浩森 07比较大小 C++ Accepted 0 MS 272 KB 198 2022-11-19 14:40:15

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ int temp,a; cin>>temp; cin>>a; if(temp>a){ cout<<temp; } else{ cout<<a; } return 0; }