Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
97564 | 包老师 | 输出满足条件的成绩 | C++ | Runtime Error | 0 MS | 268 KB | 178 | 2024-11-16 11:11:12 |
#include<bits/stdc++.h> using namespace std; int main(){ for(int i=0;i<50;i++){ int n,s; scanf("%d%d",n,s); if(s>=80){ cout<<n<<" "<<s; } } return 0; }
Runtime Error:Segmentation fault