为什么运行失败 求大佬解答哪里错了
#include <stdio.h>
float mtc(int a,int b)//a为公里数 b为打车时间
{
float c;//打车总费用
if(a<=3)
{
c=14;
printf("总公里数小于等于三公里的费用为:%d\n",c);
}
else
if(b>=23||b<5)
{
c=14+(a-3)*2.3*1.2;
printf("夜间打车费用为:%f\n",c);
}
else
{
c=14+2.3*(a-3);
printf("白天打车费用为:%f\n",c);
}
return c;
}
int main()
{
printf("小明每天打车的总费用:%f\n",mtc(12,9)+mtc(12,18));
return 0;
}
为什么会运行失败啊