PAT 乙级 1054 求平均值 (20分)

我的个人网站 Cheese的个人主页icon-default.png?t=M4ADhttp://www.cheese.ren/

博客来源 http://blog.cheese.ren/74icon-default.png?t=M4ADhttp://blog.cheese.ren/74

欢迎交换友链 :-)


#include <bits/stdc++.h>

using namespace std;

int main() {
    int n, length, vaild_n=0;
    string s;
    double sum=0, temp;
    bool flag;

    cin >> n;
    while (n--) {
        flag = true;
        cin >> s;
        //  第一位只能是数字或'-'
        if (s[0] != '-'  &&  (s[0] > '9'  ||  s[0] < '0')) {
            cout << "ERROR: " << s << " is not a legal number" << endl;
            continue;
        }
        //  只输入'-'
        if (s[0] == '-'  &&  s.length() == 1) {
            cout << "ERROR: " << s << " is not a legal number" << endl;
            continue;
        }
        //  遍历字符串
        length = -1;
        for (int i=1; i<s.length(); i++) {
            //  不能有数字和小数点以外的字符
            if (s[i] != '.'  &&  (s[i] > '9'  ||  s[i] < '0')) {
                cout << "ERROR: " << s << " is not a legal number" << endl;
                flag = false;
                break;
            }
            //  计算精度长度
            if (length != -1) {
                length++;
                if (length > 2) {
                    cout << "ERROR: " << s << " is not a legal number" << endl;
                    flag = false;
                    break;
                }
            }
            //  小数点只能出现一次,并且不能是最后一位,如果第一位是负号,第二位不能是小数点
            if (s[i] == '.') {
                if (length == -1  ||  i != s.length()-1  ||  (i == 1  &&  s[0] == '-')) {
                    length++;
                }
                else {
                    cout << "ERROR: " << s << " is not a legal number" << endl;
                    flag = false;
                    break;
                }
            }
        }
        if (!flag) {
            continue;
        }
        //  大范围
        temp = atof(s.c_str());
        if (temp > 1000  ||  temp < -1000) {
            cout << "ERROR: " << s << " is not a legal number" << endl;
            continue;
        }
        vaild_n++;
        sum += temp;
    }

    if (vaild_n == 0) {
        cout << "The average of 0 numbers is Undefined" << endl;
    }
    else {
        if (vaild_n == 1) {
            cout << fixed << setprecision(2) << "The average of " << vaild_n << " number is " << sum/vaild_n << endl;
        }
        else {
            cout << fixed << setprecision(2) << "The average of " << vaild_n << " numbers is " << sum/vaild_n << endl;
        }
    }

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值