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

为什么这样算出来答案是 28.0

#include <stdio.h>

int distance =12;

int clock = 9 && 18;

int main()

{

    float cost;

    int distance;

    int clock;

    if(distance <= 3)

    {

        cost = 14*2;

    }

    else

    {

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

        {

            cost =(14+(distance-3)*2.3*1.2)*2;

        }

        else

        {

            cost = (14+(distance-3)*2.3)*2;

        }

    }

    printf("车费是%.1f",cost);

    return 0;

}

    


提问者:慕函数1206615 2019-11-19 10:28

个回答

  • 慕哥1142323
    2019-11-19 22:00:23

    把主函数里的   

     int distance;

        int clock;

    删掉试试