嘻嘻x1x1
2019-07-26 13:08
#include <stdio.h>
float payshould;
float runfee;
int texifee(int leavetime,float distance)
{
if(distance<=3)
{
runfee==0;
}
else
{
runfee=2.3*(distance-3);
}
if(leavetime>=5&&leavetime<23)
{
runfee=runfee;
}
else
{
runfee=runfee*1.2;
}
runfee=runfee+13+1;
return 0;
}
int main()
{
payshould=texifee(9,12)+texifee(18,12);
printf("小明每天打的的费用为%d元",payshould);
return 0;
}
%d? 其次,你算法有问题,再想想。
C语言入门
926020 学习 · 20793 问题
相似问题