Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
440273 徐嘉豪 【C4-1】考试成绩的简单统计 C++ 通过 100 2 MS 244 KB 230 2026-05-10 11:41:48

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main(){ int n,s=0; cin>>n; int a[10086]; for(int i=0;i<n;i++){ cin>>a[i]; if (a[i]>=90) s++; } cout<<s; return 0; }


测评信息: