C语言编程题

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

1. 每公里单价计费2.3元

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

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

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

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

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


慕粉1345353377
浏览 1653回答 2
2回答

KevenHuang

<?php /**  *@param $time int 坐车时间  *@param $dantince float 距离  *@return $total float 金额  */ function totalPrice($time,$dantince){     $price = 2.3;     $init = 13;     $discount = $time>23||$time<5?1.2:1;     echo $discount,'<br>';     return $total = $init+$price*($dantince-3)*$discount+1; } echo totalPrice(5,13)+totalPrice(18,13); ?>这是我用php写的,你自己换成c重写思路是一样的

半枯

#include<stdio.h>int main(){ int time1,time2; int money1,money2; printf("早上打车时间");  scanf("%d",&time1); printf("晚上打车时间");  scanf("%d",&time2); money1=13+9*2.3+1; money2=13+9*2.3+1; if(time1<9&&time1>18){ money1=13+9*2.3*1.2+1; } if(time2<9&&time2>18){ money2=13+9*2.3*1.2+1; } printf("%d",money1+money2); } 
打开App,查看更多内容
随时随地看视频慕课网APP