📅  最后修改于: 2020-10-18 13:53:07             🧑  作者: Mango
此函数用于查找给定数字的立方根。
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的立方根。
让我们看一个简单的示例,其中参数“ 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
让我们看一个简单的示例,其中参数“ 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