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

大神帮帮忙!!!!!!

#include <stdio.h>

double taxiFee(double clock,double miles)//自定义一个函数

{

    double cost; 

    if(miles<=3)

    {

        cost=14;

        printf("小明每天打车费用为14\n");

    }

    else

    {

        if(clock>=23||clock<5)

        {

           cost=13+1+2.3*1.2*(miles-3);

           printf("夜间费用为%f\n",cost);

        }

        else

        {

            cost=13+1+2.3*(miles-3);

            printf("白天费用为%f\n",cost);

        }

    }

return cost;

}



int main()

{

double sumfee; 

    sumfee=taxiFee(9,12)+taxiFee(18,12);

    printf("小明每天打车费用为%f元\n",sumfee);

    return 0;

}

编译不通过,哪位大神帮小弟改一下啊!谢谢

提问者:qq_沐钼_04007561 2017-01-31 17:17

个回答

  • 慕粉1300436698
    2017-01-31 18:11:44
    已采纳


            if(clock>=23||clock<5)

            {

               cost=13+1+2.3*1.2*(miles-3);

               printf("夜间费用为%f\n",cost);

            }

            else

            {

                cost=13+1+2.3*(miles-3);

                printf("白天费用为%f\n",cost);

            }

    这一段if语句的括号改成英文的。。然后就可以了

    http://img.mukewang.com/589062d7000175be04580119.jpg