| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 70250 | sh25_wangtaojie | 整数大小比较 | C++ | 通过 | 0 MS | 244 KB | 251 | 2025-10-17 15:16:29 |
#include <iostream> using namespace std; int main() { int a,b; cin>>a>>b; if(a>b) { cout<<">"; } else if(a=b) { cout<<"="; } else if(a<b) { cout<<"<"; } return 0; }