在此问题中,需要对输入进行限制,输入的机票原价需要在100~9999之间,机票的打折率需要在1~9.9之间。同时需要四舍五入这一问题。四舍五入中可以通过价格+0.5,然后向下取整来实现。
下面介绍一下C++中的floor函数,是关于如何截断浮点数小数部分的问题。
1、函数原型:
double floor(double x);
float floor(float x);
long double floor(long double x);
2、通过输入一个想要被处理的数,然后输出一个小于输入参数x的最大整数。
#include<iostream> #include<cmath> using namespace std; int main() { double a; double b; cin >> a >> b; if (a > 100 && a < 9999 && b>1 && b < 9.9) { a = a*b / 100 + 0.5; a = floor(a); a = a * 10; cout << a<<endl; } return 0; }