📜  ++ STL-math.cbrt()函数

📅  最后修改于: 2020-10-18 13:53:07             🧑  作者: Mango

C++ STL math.cbrt()

此函数用于查找给定数字的立方根。

考虑参数’arg’:

Cube root of a number : ∛arg

句法

语法为:

double cbrt(double arg);
float cbrt(float arg);
long double cbrt(long double arg);
double cbrt(integral arg);

参数

arg:它是float或整数类型的值。

返回值

它返回给定数字arg的立方根。

例子1

让我们看一个简单的示例,其中参数“ arg”为整数类型

#include 
#include
using namespace std;
int main()
{ int arg=8;
 std::cout << "Cube root of a number is :" <

输出:

Cube root of a number is :2

例子2

让我们看一个简单的示例,其中参数“ arg”为浮点型。

#include 
#include
using namespace std;
int main()
{
 float arg=12.8;
 std::cout << "Cube root of a number is :" <

输出:

Cube root of a number is :2.33921