编写函数mypower,用来求解整数a的n次方

如题所述

程序已经调试过了,你看下吧,可以的话给个好评
#include"iostream"
using namespace std;
float power(float a,int n)
{
if (n==1)return a;
else return a*=power(a,n-1);
}

int main()
{
float a;
int n;
cout<<"请输入实数a和正整数n:"<<endl;
cin>>a>>n;
float i=power(a,n);
cout<<"n次方后:"<<"a="<<i<<endl;
cout<<"n="<<n<<endl;
system("pause");

}
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答