Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
87443 Kevin 输出满足条件的成绩 C++ Accepted 0 MS 268 KB 211 2024-08-10 11:20:41

Tests(1/1):


Code:

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