为了账号安全,请及时绑定邮箱和手机立即绑定

求指出错误!

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

正在回答

2 回答

#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;
}

0 回复 有任何疑惑可以回复我~

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

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C语言入门
  • 参与学习       926020    人
  • 解答问题       20793    个

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

进入课程

求指出错误!

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信