當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。