Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
4662 | 张然正 | 整数大小比较 | C++ | Compile Error | 0 MS | 0 KB | 285 | 2023-01-12 16:22:02 |
#include <iostream> using namespace std; int main() { int x, y; cin x, y; if (x > y) { cout << ">" << endl; } else if (x < y) { cout << "<" << endl; } else { cout << "=" << endl; } return 0; }