美文网首页工作生活
*PAT 1054 求平均值 (20 分)

*PAT 1054 求平均值 (20 分)

作者: 昭明ZMing | 来源:发表于2019-07-02 23:11 被阅读0次
    #include <iostream>
    #include <cstdio>
    #include <string.h>
    using namespace std;
    int main() {
        int n, cnt = 0;
        char a[50], b[50];
        double temp, sum = 0.0;
        cin >> n;
        for(int i = 0; i < n; i++) {
            scanf("%s", a);
            sscanf(a, "%lf", &temp);//根据格式从字符串中提取数据。如从字符串中取出整数、浮点数和字符串等。
            sprintf(b, "%.2lf",temp);//将数字变量转换为字符串。
            int flag = 0;
            for(int j = 0; j < strlen(a); j++) {
                if(a[j] != b[j]) flag = 1;
            }
            if(flag || temp < -1000 || temp > 1000) {
                printf("ERROR: %s is not a legal number\n", a);
                continue;
            } else {
                sum += temp;
                cnt++;
            }
        }
        if(cnt == 1) 
            printf("The average of 1 number is %.2lf", sum);
        else if(cnt > 1) 
            printf("The average of %d numbers is %.2lf", cnt, sum / cnt);
        else 
            printf("The average of 0 numbers is Undefined");
        return 0;
    }
    

    相关文章

      网友评论

        本文标题:*PAT 1054 求平均值 (20 分)

        本文链接:https://www.haomeiwen.com/subject/ecvxhctx.html