| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 88923 | bnu_fanmeijie | 整数大小比较 | C++ | Accepted | 0 MS | 248 KB | 442 | 2026-05-21 18:42:15 |
#include <iostream> using namespace std; int main() { long long x, y; // 注意数据范围较大,用long long cin >> x >> y; if (x > y) { //如果x的值 > y的值,那么输出“>” cout << ">" << endl; } else if (x == y) { //否则如果x和y相等,输出“=” cout << "=" << endl; } else { //否则就是x<y,输出 “<” cout << "<" << endl; } return 0; }