| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 76658 | sh25_zhuhy | 整数大小比较 | C++ | 通过 | 0 MS | 240 KB | 210 | 2025-12-19 15:42:33 |
#include<bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n; if(n<m) { cout<<"<"<<endl; } else if(n==m) { cout<<"="<<endl; } else { cout<<">"<<endl; } }