Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
147948 伊建润 输出满足条件的成绩 C++ Accepted 0 MS 268 KB 278 2026-02-09 09:17:27

Tests(1/1):


Code:

#include <iostream> using namespace std; int main() { int studentId, score; for (int i = 0; i < 50; ++i) { cin >> studentId >> score; if (score >= 80) { cout << studentId << " " << score << endl; } } return 0; }