Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
148174 编程星球01 输出满足条件的成绩 C++ Accepted 1 MS 280 KB 323 2026-02-09 19:56:23

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main() { int a[10000]; int b[10000]; for(int n = 1;n <= 50;n++){ cin >> a[n] >> b[n]; } for(int n = 1;n <= 50;n++){ if(b[n] >= 80) { cout << a[n] << " " << b[n] << endl; } } return 0; }