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


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


C++ cbrt() 函數

cbrt() 函數是 cmath 頭文件的庫函數,用於求給定數字的立方根,它接受一個數字並返回立方根。

cbrt() 函數的語法:

    cbrt(x);

參數: x– 要計算其立方根的數字。

返回值: double– 它返回 double 值,即給定數字的三次方根x

例:

    Input:
    int x = 2;

    Function call:
    cbrt(x);

    Output:
    1.25992

C++代碼演示cbrt()函數的例子

// C++ code to demonstrate the example of 
// cbrt() function

#include <iostream>
#include <cmath>
using namespace std;

// main code section
int main()
{
    float x;
    
    //input the value
    cout<<"Enter a number:";
    cin>>x;

    // calculate the square root
    float result = cbrt(x);
    cout<<"cubic root of "<<x<<" is = "<<result;
    cout<<endl;
    
    return 0;
}

輸出

First run:
Enter a number:10 
cubic root of 10 is = 2.15443 

Second run:
Enter a number:123.45 
cubic root of 123.45 is = 4.97925 

Third run:
Enter a number:0
cubic root of 0 is = 0

Fourth run:
Enter a number:-1234
cubic root of -1234 is = -10.726 


相關用法


注:本文由純淨天空篩選整理自 cbrt() function with example in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。