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

return totalPrice; 这里不懂为什么要返回为totalPrice?还有最后面倒数的那两个if,else中的语句怎么解释,看不懂。if(getTaxiPrice(moring,distance) != 0)....

#include <stdio.h>

double getTaxiPrice(int hours,int distance)

{

double totalPrice = 0.0; //定义打车费用 

double perPrice = 2.3; //定义每公里单价计费 

int startPrice = 13; //定义起步价 


if(hours<0 || hours>24){

printf("请填写正确的时间\n");

return 0;

}

else if(!(hours>=5 && hours<23)) //判断打车时间是否要增加费用

{

perPrice *= 1.2; //费用增加20%                         

}

if(distance >3) //判断公里数

{

totalPrice = startPrice +(distance - 3)*perPrice; //计算价钱

}

else

{

totalPrice = startPrice;    

}

totalPrice++; //加一块钱的燃油费

return totalPrice;

}

int main()

{

int moring = 9; //定义上午打车时间

int afternoon = 18; //定义下午打车时间

int distance = 12; //定义打车公里数

double totalPrice = 0; //定义总费用

if(getTaxiPrice(moring,distance) != 0)

{

totalPrice = getTaxiPrice(moring,distance); //调用计算费用的函数

}

else if(totalPrice != 0)

{

totalPrice += getTaxiPrice(afternoon,distance); //调用计算费用的函数

}

printf("小明每天打车的总费用是:%.2f\n",totalPrice); //输出

return 0;    

}


正在回答

2 回答

因为这个函数就是求你的打车总价格也就是totalPrice, 你看上面那个double getTaxiPrice(int hours,int distance)的这个函数要求传入的参数就是打车的时刻和打车距离,if(getTaxiPrice(moring,distance) != 0)这个判断是为了防止你输入的moring或者distance有问题,第二个是判断是确认小明早晨是打车的。

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

BossZn 提问者

非常感谢!
2015-12-05 回复 有任何疑惑可以回复我~

#include<stdio.h>

double getMoney(int dis,int hours)

{

double totalMoney=0.00;

double per=2.30;

double sta=13.00;

if(hours<0||hours>24)

{

printf("请输入正确的数字:");

return 0;

}

else if(!(hours>=5&&hours<23))

{

per*=1.2;

}

if(dis<=3)

{

totalMoney=sta;

}

else

{

totalMoney=sta+(dis-3)*per;

}

totalMoney++;

return totalMoney;

}

int main()

{

double totalMoney=0.00;

int mor=9;

int aft=18;

int dis=12;

double per=2.30;

totalMoney=getMoney(dis,mor)+getMoney(dis,aft);

printf("小明的搭车费用为:%.2f\n",totalMoney);

return 0;

}

这样就可以啦

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

举报

0/150
提交
取消

return totalPrice; 这里不懂为什么要返回为totalPrice?还有最后面倒数的那两个if,else中的语句怎么解释,看不懂。if(getTaxiPrice(moring,distance) != 0)....

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