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