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

求C语言代码

北京市出租车打车计费规则如下:

1. 每公里单价计费2.3元

2. 起步价13元(包含3公里)

3. 晚上23点(含)至次日凌晨5点(不含)打车,每公里单价计费加收20%。

4. 每次乘车加收1元钱的燃油附加税。

小明每天上下班都要打车,公司和家的距离为12公里,上午上班时间为9点,下午下班时间为6点。

请编写一个小程序计算小明每天打车的总费用。


正在回答

2 回答

右下方不是有源码下载吗?

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

liu4510 提问者

这个没有
2015-04-02 回复 有任何疑惑可以回复我~
#2

康振宁 回复 liu4510 提问者

最后一章没有源码下载?我还下下来了呢
2015-04-02 回复 有任何疑惑可以回复我~
#3

康振宁 回复 liu4510 提问者

右下方资料下载里面你看看是什么?
2015-04-02 回复 有任何疑惑可以回复我~
#4

liu4510 提问者 回复 康振宁

谢谢了!我是新手,还不怎么会用!
2015-04-03 回复 有任何疑惑可以回复我~
#5

liu4510 提问者 回复 康振宁

谢谢了!我是新手,还不怎么会用!
2015-04-03 回复 有任何疑惑可以回复我~
查看2条回复

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

}


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

举报

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

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

进入课程

求C语言代码

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