求指出错误!

来源:5-14 综合练习

_疯杍

2016-07-24 22:21

/249/5642/FPjs/hello.c: In function 'taixfee': /249/5642/FPjs/hello.c:29:1: error: expected declaration or statement at  错了什么。。求指出!

写回答 关注

2回答

  • 越飞越高
    2016-11-21 22:52:00

    #include <stdio.h>//头文件
    float Cost(int gl,int time)//定义函数,gl为路程,time为时间
    {
        float a = 2.3;//每公里的计费单价
        int b = 13;//起步价
        int c = 1;//燃油费
        int d = 3;//包含路程
        double money;//花费
       
        if( gl > 3 )//判断距离
        {
         if(time<5||time>=23)//判断时间是否为晚上
      {
       money = b + ( gl - d ) * a * 1.2 + c ;
      }//判断句
      else if(time>=5||time<23)//判断时间是否为白天
      {
       money = b + ( gl - d ) * a + c ;
      }//判断句
      else //3公里以下早晚都是一样的价钱
            {
       money = b + c ; 
      }  //判断句
        }
        return money;//计算出的花费返回函数
    }
       
    int main()
    {
        float sum = Cost(12,9)+Cost(12,18) ;//定义总路费
        printf("小明每天打车的总路费为:%.2f元\n",sum);//输出
        return 0;
    }

  • 蓝色星沉
    2016-07-25 14:13:05

    额。。。你应该把你的代码截图出来啊

C语言入门

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

926026 学习 · 20793 问题

查看课程

相似问题