哪错了求解答

来源:5-14 综合练习

qq_timeless_21

2018-10-12 18:49

#include <stdio.h>

float taxiFree(int clock,int mile)

{

    

    if (clock<23);

   { cost=((mile-3)*2.3+13+1)*2;

    printf("%f\n",cost);

   }

    else

    {

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

      {

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

          printf("%f\n",cost);

        }

    else(mile<=3)

    {

        cost==14;

    printf("%d\n",cost);

     }

    return cost;

}

    

}

int main()

    float taxiFree(9,12)+taxiFree(18,12);

    printf("总费用\n",cost);

    return 0;

}


写回答 关注

1回答

  • 淡斌强
    2018-10-12 20:37:32

    1:少了cost的定义,你的float cost;呢?         2:else后面不能加(定义)吧                              3:你的两个函数相加应该要来个字母什么的定义吧,比如int a=什么什么(那两个函数相加)然后最后printf内的“,”后应该是上面那个字母吧

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926021 学习 · 20793 问题

查看课程

相似问题