此函数用于查找给定数字的幂。
考虑一个基数 'b' 和 index 'e'。
功率=be
用法
它的语法是:
double pow(double b, double e);
float pow(float b, float e);
long double pow(long double b, long double e);
promoted pow(type1 b, type2 e);
注意:如果任何参数是 long double 类型,则返回类型将提升为 long double。如果不是,则返回类型被提升为 double。
参数
b:'b' 是要计算其幂的数。
e:'e' 是 index 。
返回值
它将基数 'b'raised 返回到 'e' 的幂。
例子1
让我们看一个简单的例子,当基数和 index 都是整数类型时。
#include <iostream>
#include<cmath>
using namespace std;
int main()
{
int base=4;
int exponent=2;
int power=pow(base,exponent);
std::cout << "Power of a given number is:" <<power;
return 0;
}
输出:
Power of a given number is:16
例子2
让我们看一个基数为浮点类型而 index 为整数类型的示例。
#include <iostream>
#include<cmath>
using namespace std;
int main()
{
int base=4.5;
int exponent=3;
int power=pow(base,exponent);
std::cout << "Power of a given number is:" <<power;
return 0;
}
输出:
Power of a given number is:64
例子3
让我们看一个简单的例子,当基数和 index 都是浮点类型时..
#include <iostream>
#include<cmath>
using namespace std;
int main()
{
int base=2.5;
int exponent=2.5;
int power=pow(base,exponent);
std::cout << "Power of a given number is:" <<power;
return 0;
}
输出:
Power of a given number is:4
相关用法
- C++ Math scalbn()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math erfc()用法及代码示例
- C++ Math sinh()用法及代码示例
- C++ Math scalbln()用法及代码示例
- C++ Math cosh()用法及代码示例
- C++ Math fma()用法及代码示例
- C++ Math atan()用法及代码示例
- C++ Math cos()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math pow()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。