它将值四舍五入到不小于给定值的最接近的整数。
例如:
ceil(8.1)=9.0;
ceil(-8.8)=-8.0;
用法
假设一个数字是 'x'。语法是:
double ceil(double x);
参数
x: 它是四舍五入到最接近的整数的值。
返回值
它返回不小于 x 的最小整数值。
例子1
让我们看一个简单的例子,考虑 x 的正值。
#include <iostream>
#include<cmath>
using namespace std;
int main()
{
float x=9.2;
std::cout << "Initial value of x is:"<<x;
cout<<'\n';
cout<<"final value of x is:"<<ceil(x);
return 0;
}
输出:
Initial value of x is:9.2 final value of x is:10
例子2
让我们看一个简单的例子,考虑 x 的负值。
#include <iostream>
#include<cmath>
using namespace std;
int main()
{
float x=-2.2;
std::cout << "Initial value of x is:"<<x;
cout<<'\n';
cout<<"final value of x is:"<<ceil(x);
return 0;
}
输出:
Initial value of x is:-2.2 final value of x is:-2
相关用法
- C++ Math cosh()用法及代码示例
- C++ Math cos()用法及代码示例
- C++ Math copysign()用法及代码示例
- C++ Math cbrt()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math erfc()用法及代码示例
- C++ Math sinh()用法及代码示例
- C++ Math scalbln()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math ceil()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。