大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
extern float pow(float x, float y)
创新互联是一家专业提供临潼企业网站建设,专注与成都网站设计、网站制作、html5、小程序制作等业务。10年已为临潼众多企业、政府机构等服务。创新互联专业网络公司优惠进行中。
用法:#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
C语言是一门通用计算机编程语言,应用广泛。C语言的设计目标是提供一种能以简易的方式编译、处理低级存储器、产生少量的机器码以及不需要任何运行环境支持便能运行的编程语言。
power(int x ,int N) // 求x的N次方
{
int i,xsum=1;
for(i=N;i0;i--)
{
xsum=xsum*x;
}
return xsum;】
原型:extern float pow(float x, float y);
用法:#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