Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
147973 姜景文 输出满足条件的成绩 C++ Accepted 0 MS 268 KB 190 2026-02-09 09:43:07

Tests(1/1):


Code:

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