| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 79661 | sh25_zhuwy | 成绩统计 | C++ | 通过 | 0 MS | 248 KB | 316 | 2026-01-04 14:35:22 |
#include<iostream> using namespace std; int main(){ int v=0,b=0,n=0,m=0; double x; for(int i=0;i<5;++i){ cin>>x; if(x>=90) ++v; else if(x>=82) ++b; else if(x>=75) ++n; else ++m; } cout<<v<<","<<b<<","<<n<<","<<m; return 0; }