【C语言】编程:从键盘输入所需托运行李的重量,输出托运行李所需的费用? 判断三角形的c程序
- 麻烦帮忙编写C语言程序,计算托运行李的费用.
- 【C语言编程】航空公司托运行李规定,行李重量不超过10公斤的,托运费按每公斤15元计费
- c语言 实验4 逻辑结构程序设计 航空公司对旅客托运行李
- C语言题目,麻烦求解单急 行李托运:如果行李的重量在30.0斤(包含)以下,收取的托运费用是15元;在30.0斤以上,每多一斤多收取2元。从键盘上输入任意重量,计算托运费。
麻烦帮忙编写C语言程序,计算托运行李的费用.
#include<iostream>
#include<string>
using namespace std;
double fee(double weight)
{
int result=0;
if(weight<50)
result=0.15*weight;
else
result=0.15*50+0.22*(weight-50);
return result;
}
int main()
{
double weight;
cin>>weight;
cout<<"所需总费用为:"<<fee(weight)<<endl;
return 0;
}
【C语言编程】航空公司托运行李规定,行李重量不超过10公斤的,托运费按每公斤15元计费
#include<stdio.h>
int main()
{
double baggage;
double cost;
printf("请输入行李的重量:");
scanf("%lf",&baggage);
if(baggage>10)
cost=10*15+(baggage-10)*10;
else
cost=baggage*15;
printf("行李托运费为:cost=%.4lf\n",cost); //精确到小数点后4位
return 0;
}
c语言 实验4 逻辑结构程序设计 航空公司对旅客托运行李
#include
int main()
{
int a,b,c;
printf("请输入旅客托运行李的重量、经济舱全额票价:");
scanf("%d%d",&a,&b);
if(a>50)
printf("不能托运\n");
else
{
if(a<=20)
printf("免费\n");
else
{
c = (a - 20)*0.015*b;
printf("超重费用为%d",c);
}
}
return 0;
}
C语言题目,麻烦求解单急 行李托运:如果行李的重量在30.0斤(包含)以下,收取的托运费用是15元;在30.0斤以上,每多一斤多收取2元。从键盘上输入任意重量,计算托运费。
c语言代码如下
#include <stdio.h>
int main()
{
float Weight,freight;
printf("请输入物品重量:");
while(scanf("%f",&Weight) != 1)
{
printf("非法输入,请重新输入数字:\n");
fflush(stdin);
}
while(Weight<=0)
{
printf("非法输入,请重新输入数字:\n");
scanf("%f",&Weight);
}
if(Weight <= 30)
freight = 15;
else
freight = 15 + (Weight - 30) * 2;
printf("运费 = %.2f\n",freight);
return 0;
}