请大神帮忙看看还有哪里不对的吗?(运行结果已正确)
#include <stdio.h>
double getTotalCost(float n,float t)
{
double cost;
if(n<=3)
{
cost=13+1;
}
else
{
if(5<=t&&t<23)
{
cost=13+1+2.3*(n-3);
}
else
{
cost=13+1+2.3*(n-3)*1.2;
}
}
return cost;
}
int main()
{
printf("小明每天打车总费用为%f:",getTotalCost(12,9)+getTotalCost(12,18));
return 0;
}