当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ cbrt()用法及代码示例


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++ cbrt()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。