#include <stdio.h>
float fee(int t,int s)
{
float f;
if(s<=3)
{
f=13+1;
}
else
{
if((t<=23) && (t>5))
{
f=(s-3)*2.3+13+1;
}
else
{
f=(2.3*1.2)*(s-3)+13+1;
}
}
return f;
}
int main()
{
printf("小明每天打车的总费用为:%.1f",(fee(9,12)+fee(18,12)));
return 0;
}
慕勒7123956
Planeswalker23
相关分类