可以帮我看看有什么问题吗?
#include <stdio.h>
int main()
{
pay();
return 0;
}
float pay(float t,float s)
{
float cost;
if(s<4)
{
cost=14;
return cost;
}
else
{
if(t>5&&t<24)
{
cost=14+s/2.3;
return cost;
}
else
{
cost=14+s/(2.3*1.2);
return cost;
}
}
printf("小明每天打车总费用为%f",2*cost);
}