| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 | 
|---|---|---|---|---|---|---|---|---|
| 135260 | lbc | 08比较大小 | C++ | Wrong Answer | 1 MS | 276 KB | 138 | 2025-11-03 16:41:52 | 
#include <iostream> using namespace std; int main(){ int a,b; cin>>a,b; if(a>=b){ cout<<a; } if(a<=b){ cout<<b; } }
------Input------
0 4
------Answer-----
4
------Your output-----
00