问答详情
源自:5-14 综合练习

为什么我的结果出来是71.199997元.....

#include <stdio.h>
int main()
{
    int distance= 12 , price=2.3, Time =9||18 , n=2 ;
    float total;
    {
    if(Time < 5||(Time>=23&&Time<24))
     {
        if(distance<=3)
        total = 13;
        else
        total =( distance - 3 )*price*1.2 + 13;
     }
    else
     {
        if(distance <= 3)
        total = 13;
        else
        total =(distance - 3)*price + 13;
     }
    }
total =(total+ 1 )*n;
printf("小明每天打车的总费用为:%f元。",total);
    //我自己算出来是69.4,可是结果不一样
    return 0;
}

提问者:野生的经验君 2015-06-30 14:39

个回答

  • 野生的经验君
    2015-07-02 11:06:12

    #include <stdio.h>
    int main()
    {
        int distance= 12 ,Time=9, n=2 ;
        float total;
        float price=2.3;
        {
        if(Time < 5||(Time>=23&&Time<24))
         {
            if(distance<=3)
            total = 13;
            else
            total =( distance - 3 )*price*1.2 + 13;
         }
        else
         {
            if(distance <= 3)
            total = 13;
            else
            total =(distance - 3)*price + 13;
         }
        }
    total =(total+ 1 )*n;
    printf("小明每天打车的总费用为:%f元。",total);
        //我自己算出来是69.4,可是结果不一样
        return 0;
    }

     这样就好了。不过结果是69.399994

  • 慕村3108073
    2015-06-30 15:12:36

    int   Time =9||18,第一次看到可以这么定义