Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
61235 | jdf_chenjialin | 比大小 | C++ | 解答错误 | 0 MS | 244 KB | 224 | 2025-02-26 17:02:30 |
#include <bits/stdc++.h> using namespace std; int a,b; int main() { cin >> a >> b; if (a>b) cout << "first"; else if (a<b) cout << "second"; else cout << "same"; return 0; }