C++ 中的cbrt() 函数返回一个数字的立方根。
[Mathematics] ∛x = cbrt(x) [In C Programming]
该函数在<cmath> 头文件中定义。
cbrt() 原型 [从 C++ 11 标准开始]
double cbrt(double x); float cbrt(float x); long double cbrt(long double x); double cbrt(T x); // For integral type
参数:
cbrt() 函数采用一个要计算其立方根的参数。
返回:
cbrt() 函数返回给定参数的立方根。
示例 1:cbrt() 如何在 C++ 中工作?
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double x = -1000.0, result;
result = cbrt(x);
cout << "Cube root of " << x << " is " << result << endl;
return 0;
}
运行程序时,输出将是:
Cube root of -1000 is -10
示例 2:cbrt() 函数带整数参数
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
long x = 964353422;
double result = cbrt(x);
cout << "Cube root of " << x << " is " << result << endl;
return 0;
}
运行程序时,输出将是:
Cube root of 964353422 is 987.974
相关用法
- C++ clock()用法及代码示例
- C++ clog用法及代码示例
- C++ count()用法及代码示例
- C++ copy_n()用法及代码示例
- C++ complex cosh()用法及代码示例
- C++ copy()用法及代码示例
- C++ c32rtomb()用法及代码示例
- C++ count_if()用法及代码示例
- C++ c16rtomb()用法及代码示例
- C++ cin用法及代码示例
- C++ ctime()用法及代码示例
- C++ copy_backward()用法及代码示例
- C++ cosh()用法及代码示例
- C++ cout用法及代码示例
- C++ calloc()用法及代码示例
- C++ cos()用法及代码示例
- C++ copysign()用法及代码示例
- C++ cmath abs()用法及代码示例
- C++ copy_if()用法及代码示例
- C++ cin get()用法及代码示例
注:本文由纯净天空筛选整理自 C++ cbrt()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。