| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 88922 | bnu_fanmeijie | 整数大小比较 | C++ | 通过 | 0 MS | 248 KB | 314 | 2026-05-21 18:41:01 |
#include <iostream> using namespace std; int main() { long long x, y; // 注意数据范围较大,用long long cin >> x >> y; if (x > y) { cout << ">" << endl; } else if (x == y) { cout << "=" << endl; } else { cout << "<" << endl; } return 0; }