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
相关用法
- C++ clock()用法及代码示例
- C++ count()用法及代码示例
- C++ copy_n()用法及代码示例
- C++ complex cosh()用法及代码示例
- C++ copy()用法及代码示例
- C++ c32rtomb()用法及代码示例
- C++ count_if()用法及代码示例
- C++ c16rtomb()用法及代码示例
- C++ ctime()用法及代码示例
- C++ conj()用法及代码示例
- C++ copy_backward()用法及代码示例
- C++ cosh()用法及代码示例
- C++ cos()用法及代码示例
- C++ copysign()用法及代码示例
- C++ copy_if()用法及代码示例
- C++ cin get()用法及代码示例
- C++ ceil()用法及代码示例
- C++ complex cos()用法及代码示例
- C++ cauchy_distribution a()用法及代码示例
- C++ unordered_map cbegin用法及代码示例
注:本文由纯净天空筛选整理自 cbrt() function with example in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。