#include <stdio.h>
float mtc(int a,int b)//a为公里数 b为打车时间
{
float c;//打车总费用
if(a<=3)
{
c=14;
printf("总公里数小于等于三公里的费用为:%f\n",c);
}
else
if(b>=23||b<5)
{
c=14+(a-3)*2.3*1.2;
printf("夜间打车费用为:%.1f\n",c);
}
else
{
c=14+2.3*(a-3);
printf("白天打车费用为:%.1f\n",c);
}
return c;
}
int main()
{
printf("小明每天打车的总费用:%.1f\n",mtc(12,9)+mtc(12,18));
return 0;
}
运行之后是这样的:
白天打车费用为:34.7 白天打车费用为:34.7 小明每天打车的总费用:69.4
请问为什么白天打车会出现且会出现两次 到底是哪里错了呢
相关分类