lscoder
2018-11-03 23:28
#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;
}
#include <stdio.h>
float money(float i,float n) //函数类型不对 , 后面两个传入值可以用int,因为会被强制转换,但最好还是也用float类型,因为时间不会都是整数;
{
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,s,up;
price=money(24,4)+money(6,12);
printf("%f",price); //输出的不是整数, 要用%f
return 0;
}
#include<stdio.h>
int main()
{
printf("不知道");
return 0;
}
C语言入门
926021 学习 · 20793 问题
相似问题
回答 1
回答 5
回答 1
回答 1
回答 1