C语言中的幂函数··

C语言中的幂函数··,第1张

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

C语言是一门通用计算机编程语言,应用广泛。C语言的设计目标是提枝渣尘供一种能以简易的方式编译、处理低级存储器、产生少量的机器码以及不需要任何运行环境支梁戚持便能运行的编程语言。

原型: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


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12491206.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-25
下一篇 2023-05-25

发表评论

登录后才能评论

评论列表(0条)

保存