问题标题: 酷町堂:1057 考试等级

0
0
已解决
李致远
李致远
高级光能
高级光能

1057 考试等级(newcourse.codingtang版)

1057(ke.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分找错

 

 


0
已采纳
黄品翔
黄品翔
初级光能
初级光能

1.建议用数组,下标105;

2.输出时,cnt有1、2号,3、4号呢?被你吃了?还有,cnt除以的10是哪来的?明明就是除以n好吗?

黄品翔在2020-04-28 12:12:27追加了内容

望采纳~

我要回答