永发信息网

编写计算X的N次乘方的程序

答案:2  悬赏:60  手机版
解决时间 2021-03-08 00:22
#include
main()
{
int x,y,n;
if(x=0);
printf("Error.NO");
else
if(x!=0&&n=0)
printf("S=1",S);
else
power(float x,int n)
}

power(int a,int b)
{while(b)
{t=1;
t=t*a;
b--;
return t}
}
程序错误
我是初学者,详细帮我讲一下
最佳答案
不明白加我百度HI
#include
int power(int a,int b) ;
void main()
{
int x,n;
scanf("%d %d",&x,&n);
if(x==0)
printf("Error.NO\n");
else if(x!=0&&n==0)
printf("S=1");
else
printf("%d\n",power(x,n) );
}

int power(int a,int b)
{
int t=1;
while(b)
{
t=t*a;
b--;
}
return t;
}
全部回答
这个... #include long fun(int x,int n) { long res=1; int i; for(i=0;i
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯