floor()
函数floor()函数是cmath标头的库函数,用于查找给定数字的向上舍入(向下)值,它接受一个数字并返回不大于给定数字的最大整数值。
floor()
函数语法:
floor(x);
参数: x –是要向上舍入的数字。
返回值: double-返回double类型值,该值是给定数字的四舍五入值。
示例
Input: float x = 2.3; Function call: floor(x); Output: 2 Input: float x = 3.8 Function call: floor(x); Output: 3
floor()
函数示例//示例 // floor()功能 #include <iostream> #include <cmath> using namespace std; // main()部分 int main(){ float x; //输入号码 cout<<"Enter a float value: "; cin>>x; //打印舍入值 cout<<"floor("<<x<<"): "<<floor(x)<<endl; return 0; }
输出结果
First run: Enter a float value: 2.3 floor(2.3): 2 Second run: Enter a float value: 3.8 floor(3.8): 3 Third run: Enter a float value: -2.3 floor(-2.3): -3 Fourth run: Enter a float value: -3.8 floor(-3.8): -4