求x的n次方(函数)
1.编写一个求x的n次方都函数。
#include <iostream>
using namespace std;
double power(double x,int n);
int main()
{
double x;
int a;
cin>>x>>a;
power(x,a);
cout<<power(x,a)<<endl;
return 0;
}
double power(double x,int n){
double y=1.0;
while(n--){
y=y*x;
}
return y;
}