此函数用于查找给定数字的立方根。
考虑一个参数 'arg':
Cube root of a number:âarg
用法
语法是:
double cbrt(double arg);
float cbrt(float arg);
long double cbrt(long double arg);
double cbrt(integral arg);
参数
arg:它是浮点型或整数型的值。
返回值
它返回给定数字 arg 的立方根。
例子1
当参数 'arg' 是整数类型时,让我们看一个简单的例子
#include <iostream>
#include<cmath>
using namespace std;
int main()
{ int arg=8;
std::cout << "Cube root of a number is:" <<cbrt(arg);
return 0;
}
输出:
Cube root of a number is:2
例子2
当参数 'arg' 是浮点类型时,让我们看一个简单的例子。
#include <iostream>
#include<cmath>
using namespace std;
int main()
{
float arg=12.8;
std::cout << "Cube root of a number is:" <<cbrt(arg);
return 0;
}
输出:
Cube root of a number is:2.33921
相关用法
- C++ Math cosh()用法及代码示例
- C++ Math cos()用法及代码示例
- C++ Math ceil()用法及代码示例
- C++ Math copysign()用法及代码示例
- 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 cbrt()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。