小白菜鸟52hz
2020-04-02 20:49
#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;
}
【"a+b"】此数据类型为字符串,把双引号“”去掉即可
C语言入门
926207 学习 · 20797 问题
相似问题