1. 程式人生 > >PAT 1054 求平均值

PAT 1054 求平均值

esp tps spa main ref defined href 輸出格式 精確

https://pintia.cn/problem-sets/994805260223102976/problems/994805272659214336

本題的基本要求非常簡單:給定N個實數,計算它們的平均值。但復雜的是有些輸入數據可能是非法的。一個“合法”的輸入是[-1000,1000]區間內的實數,並且最多精確到小數點後2位。當你計算平均值的時候,不能把那些非法的數據算在內。

輸入格式:

輸入第一行給出正整數N(<=100)。隨後一行給出N個實數,數字間以一個空格分隔。

輸出格式:

對每個非法輸入,在一行中輸出“ERROR: X is not a legal number”,其中X是輸入。最後在一行中輸出結果:“The average of K numbers is Y”,其中K是合法輸入的個數,Y是它們的平均值,精確到小數點後2位。如果平均值無法計算,則用“Undefined”替換Y。如果K為1,則輸出“The average of 1 number is Y”。

輸入樣例1:

7
5 -3.2 aaa 9999 2.3.4 7.123 2.35

輸出樣例1:

ERROR: aaa is not a legal number
ERROR: 9999 is not a legal number
ERROR: 2.3.4 is not a legal number
ERROR: 7.123 is not a legal number
The average of 3 numbers is 1.38

輸入樣例2:

2
aaa -9999

輸出樣例2:

ERROR: aaa is not a legal number
ERROR: -9999 is not a legal number
The average of 0 numbers is Undefined


代碼:
#include <bits/stdc++.h>
using namespace std;

const int maxn = 1e5 + 10;
char s[maxn];
double num[1111];

int main() {
    int T;
    scanf("%d", &T);
    double sum = 0;
    int dot = 0;
    for(int j = 1; j <= T;j ++) {
        scanf("%s", s);
        int len = strlen(s);
        bool flag = true;
        int cnt = 0, temp, ans = 0;
        for(int i = 0; i < len; i ++) {
            if(!((s[i] >= ‘0‘ && s[i] <= ‘9‘) || s[i] == ‘-‘ || s[i] == ‘.‘ || s[i] == ‘+‘))
                flag=false;
/*
            if(s[0]==‘.‘||s[len-1]==‘.‘)
                flag=false;
*/
            if(s[i]==‘-‘&&i>0)
                flag=false;

            if(s[0]==‘-‘&&len==1)
                flag=false;

            if(s[i]==‘+‘&&i>0)
                flag=false;

            if(s[0]==‘+‘&&len==1)
                flag=false;

            if(s[i] == ‘.‘) {
                cnt ++;
                if(cnt > 1)
                    flag = false;
                else if(cnt == 1) {
                    temp = i;
                    if(len - temp > 3)
                        flag = false;
                }
            }
        }
        if(flag) {
            ans ++;
            num[ans] = atof(s);
            for(int i = 1; i <= ans; i ++) {
                if(num[i] >= -1000 && num[i] <= 1000) {
                    dot ++;
                    sum += num[i];
                }
                else flag = false;
            }
        }
        if(!flag)
            printf("ERROR: %s is not a legal number\n", s);
    }
    if(dot == 1)
        printf("The average of %d number is %.2lf\n", dot, sum/dot);
    else if(dot>1)
        printf("The average of %d numbers is %.2lf\n", dot, sum/dot);
    else
        printf("The average of 0 numbers is Undefined\n");
    return 0;
}

  

PAT 1054 求平均值