PTA 7-60 衝鋒衣選貨及折扣 (15分) (C語言)

ProphetMo__發表於2020-12-31

在這裡插入圖片描述
輸入格式:
DG110013,2

輸出格式:
1574.00

輸入樣例:
在這裡給出一組輸入。例如:

DG120002,1
輸出樣例:
在這裡給出相應的輸出。例如:

619.00
本題不難,主要問題是在如何正確處理輸入。
程式碼如下

        #include <stdio.h>
    #include <string.h>
    int main()
    {
        int i=0,n;
        double price;
        char str[100];
        str[0]=getchar();
        while(str[i]!=',')///輸入了逗號
        {
            i++;
            str[i]=getchar();
        }
        str[i+1]='\0';//字串的結束符,不寫這個系統好像也會自動在字串尾端補上一個結束符
        scanf("%d",&n);
        if(!strcmp(str,"DG110013,"))//注意比較的字串後面有個逗號
        {
            price=812.0*n;
        }
        else if(!strcmp(str,"DG110018,"))
        {
            price=879.0*n;
        }
        else if(!strcmp(str,"DG110004,"))
        {
            price=735.0*n;
        }
        else if(!strcmp(str,"DG120002,"))
        {
            price=649.0*n;
        }
        else
        {
            printf("Error!\n");
        }
        if(price>=899)
        {
            price-=50;
            printf("%.2f\n",price);
        }
        else if(price>=599)
        {
            price-=30;
            printf("%.2f\n",price);
        }
        return 0;
    }


They call me Prophet,Remember me.

相關文章