乘坐飞机时,当乘客行李小于等于20公斤时,按每公斤1.68元收费,大于20公斤时,按每公斤1.98元收费,编程计算收费(保留2位小数)。
#include <bits/stdc++.h>//用万能头文件
using namespace std;
int main()
{
int n;
cin >> n ;
if (n<=20)//没有;
cout<<fixed<<setprecision(2)<<n*1.68;
else//这里用else
cout<<fixed<<setprecision(2)<<n*1.98;
return 0;
}
0.0分
0 人评分