0
已解决
李致远
高级光能
高级光能
1057 考试等级(newcourse.codingtang版)
Wrong Answer:0分
#include<iostream>
#include<cstdio>
using namespace std;
double cnt1, cnt2, cnt3, cnt4;
int main() {
int n, t;
cin >> n;
for(int i = 1; i <= n; i++) {
cin >> t;
if(t >= 90 && t <= 100) {
cnt1++;
} else if(t >= 75 && t <= 89) {
cnt2++;
} else if(t >= 60 && t <= 74) {
cnt3++;
} else {
cnt4++;
}
}
printf("%.2f", cnt1 / 10 * 100);
cout << "%" << endl;
printf("%.2f", cnt2 / 10 * 100);
cout << "%" << endl;
printf("%.2f", cnt2 / 10 * 100);
cout << "%" << endl;
printf("%.2f", cnt2 / 10 * 100);
cout << "%" << endl;
return 0;
}//0分找错