重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
原型:extern float pow(float x, float y);
成都创新互联公司,为您提供重庆网站建设、网站制作公司、网站营销推广、网站开发设计,对服务履带搅拌车等多个行业拥有丰富的网站建设及推广经验。成都创新互联公司网站建设公司成立于2013年,提供专业网站制作报价服务,我们深知市场的竞争激烈,认真对待每位客户,为客户提供赏心悦目的作品。 与客户共同发展进步,是我们永远的责任!
用法:#include math.h
功能:计算x的y次幂。
说明:x应大于零,返回幂指数的结果。
举例:
// pow.c
#include stdlib.h
#include math.h
#include conio.h
void main()
{
printf("4^5=%f",pow(4.,5.));
getchar();
}
相关函数:pow10
#include stdio.h
int main(void)
{
int x,y=1,z;
printf("Enter x:");
scanf("%d",x);
for(z=1;z=x;z++)
{
y=y*x;
}
printf("y=%d",y);
return 0;
}
或
#include stdio.h
#include math.h
int main(void)
{
int x,y;
printf("Enter x:");
scanf("%d",x);
y=pow(x,x);
printf("y=%d",y);
return 0;
}
也可以直接写个啊, 不是很难的, 顺便也练练吗, 当然肯定没有库函数的效率高, 主要是练手.
int mifunc(int x, int n)
{
int i;
int sum = 1;
for(i=0; i =n; i++)
{
if(i == 0)
return 1;
sum *= x;
}
return sum;
}