在本教程中,我们将借助示例了解 C++ pow() 函数。
pow()
函数返回第一个参数的第二个参数次方的结果。该函数在cmath 头文件中定义。
在 C++ 中,pow(a, b) = ab
。
示例
#include <iostream>
#include <cmath>
using namespace std;
int main() {
// computes 5 raised to the power 3
cout << pow(5, 3);
return 0;
}
// Output: 125
pow() 语法
用法:
pow(double base, double exponent);
参数:
pow()
函数有两个参数:
- base- 基值
- exponent- 基数的 index
返回:
pow()
函数返回:
baseexponent
的结果- 1.0 如果
exponent
为零 - 如果
base
为零,则为 0.0
pow() 原型
cmath 头文件中定义的pow()
的原型是:
double pow(double base, double exponent);
float pow(float base, float exponent);
long double pow(long double base, long double exponent);
// for other argument types
Promoted pow(Type1 base, Type2 exponent);
从 C++ 11 开始,
- 如果传递给
pow()
的任何参数是long double
,则返回类型Promoted
是long double
- 否则,返回类型
Promoted
是double
示例 1:C++ pow()
#include <iostream>
#include <cmath>
using namespace std;
int main () {
double base, exponent, result;
base = 3.4;
exponent = 4.4;
result = pow(base, exponent);
cout << base << " ^ " << exponent << " = " << result;
return 0;
}
输出
3.4 ^ 4.4 = 218.025
示例 2:pow() 使用不同的参数
#include <iostream>
#include <cmath>
using namespace std;
int main () {
long double base = 4.4, result;
int exponent = -3;
result = pow(base, exponent);
cout << base << " ^ " << exponent << " = " << result << endl;
// initialize int arguments
int int_base = -4, int_exponent = 6;
double answer;
// pow() returns double in this case
answer = pow(int_base, int_exponent);
cout << int_base << " ^ " << int_exponent << " = " << answer;
return 0;
}
输出
4.4 ^ -3 = 0.0117393 -4 ^ 6 = 4096
相关用法
- C++ complex pow()用法及代码示例
- C++ complex polar()用法及代码示例
- C++ puts()用法及代码示例
- C++ putc()用法及代码示例
- C++ priority_queue top()用法及代码示例
- C++ putwchar()用法及代码示例
- C++ printf()用法及代码示例
- C++ priority_queue pop()用法及代码示例
- C++ priority_queue::empty()、priority_queue::size()用法及代码示例
- C++ priority_queue push()用法及代码示例
- C++ priority_queue value_type用法及代码示例
- C++ priority_queue size()用法及代码示例
- C++ priority_queue swap()用法及代码示例
- C++ perror()用法及代码示例
- C++ priority_queue::top()用法及代码示例
- C++ priority_queue::push()、priority_queue::pop()用法及代码示例
- C++ putwc()用法及代码示例
- C++ priority_queue empty()用法及代码示例
- C++ priority_queue emplace()用法及代码示例
- C++ priority_queue::swap()用法及代码示例
注:本文由纯净天空筛选整理自 C++ pow()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。