📅  最后修改于: 2020-09-25 06:24:05             🧑  作者: Mango
该程序从用户处获得两个数字(一个基本数字和一个指数)并计算功效。
Power of a number = baseexponent
#include
using namespace std;
int main()
{
int exponent;
float base, result = 1;
cout << "Enter base and exponent respectively: ";
cin >> base >> exponent;
cout << base << "^" << exponent << " = ";
while (exponent != 0) {
result *= base;
--exponent;
}
cout << result;
return 0;
}
输出
Enter base and exponent respectively: 3.4
5
3.4^5 = 454.354
仅当指数为正整数时,以上技术才有效。
如果您需要找到具有任何实数的指数的幂,可以使用pow()
函数。
#include
#include
using namespace std;
int main()
{
float base, exponent, result;
cout << "Enter base and exponent respectively: ";
cin >> base >> exponent;
result = pow(base, exponent);
cout << base << "^" << exponent << " = " << result;
return 0;
}
输出
Enter base and exponent respectively: 2.3
4.5
2.3^4.5 = 42.44