求指出错误!
/249/5642/FPjs/hello.c: In function 'taixfee': /249/5642/FPjs/hello.c:29:1: error: expected declaration or statement at 错了什么。。求指出!
/249/5642/FPjs/hello.c: In function 'taixfee': /249/5642/FPjs/hello.c:29:1: error: expected declaration or statement at 错了什么。。求指出!
2016-07-24
#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;
}
举报