我这个有什么毛病?为什么输出总是12
#include <stdio.h>
int money(int i,int n)
{
float price;
if(n>3)//判断路程是否大于3公里
{
if(i>=5&&i<23)//判断是否为白天
{
price=14+(n-3)*2.3;
}
else
{
price=14+(n-3)*2.3*1.2;
}
}
else {
price=14;
}
return price;
}
int main()
{
float price;
price=money(24,4)+money(6,12);
printf("%d",price);
return 0;
}