Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
118820 | 李俊博 | 07比较大小 | C++ | Wrong Answer | 1 MS | 272 KB | 312 | 2025-05-10 15:08:59 |
#include<iostream> using namespace std; int main() { /** char a; cin>>a; if(a =='Y'){ cout<<'A'; }else { if(a =='Z'){ cout<<'B'; }else{ cout<<char(a+2); } } **/ int a,b; cin>>a>>b; if(-2^16<=a, b<2^16) { cout<<a; } else { cout<<b; } return 0; }
------Input------
7405 9836
------Answer-----
9836
------Your output-----
7405