求大佬帮我看看有问题的地方
#include <stdio.h>
float dache(int h)
{
float x;
if(h>=5&&h<23)
{
x=13+2.3*9;
}
else
{
x=13+2.3*1.2*9;
}
return x;
}
int main()
{
float a=dache(9);
float b=dache(18);
printf("小明每天打车的总费用为%f元",a+b);
return 0;
}
#include <stdio.h>
float dache(int h)
{
float x;
if(h>=5&&h<23)
{
x=13+2.3*9;
}
else
{
x=13+2.3*1.2*9;
}
return x;
}
int main()
{
float a=dache(9);
float b=dache(18);
printf("小明每天打车的总费用为%f元",a+b);
return 0;
}
2020-04-02
举报