
pow()函数用来求x的y次幂,x、y及函数值都是double型 ,其原型为:double pow(double x, double y)。
实渗陆例代码如下:
#include<stdio.h>
#include<math.h>
void main()
{
double x = 2, y = 10
printf("%f\n",pow(x, y))
return 0
}
扩展资料:
在调用pow函数时,可能导致错误的情况:
如果底数 x 为负数并且指数 y 不是整数,将会导致 domain error错误。
如果底数 x 和指数 y 都是 0,可能会导致 domain error?错误,也可能没有;这跟库的实现有关。
如果底数 x 是 0,指数 y 是负数,可能会导致?domain error 或pole error 错误,也可能没有丛圆顷;这跟库的实现有关。
如果返回值 ret 太大或者太小,将会导致range error 错误。
错误代码:
如果发生 domain error 错误,那么全局变量 errno 将被设置为 EDOM;
如果腔郑发生 pole error 或 range error 错误,那么全局变量 errno 将被设置为 ERANGE。
参考资料:
pow函数——百度百科
c语言中pow函数用的步骤。电脑:华为MateBook14
系统:Windows10
软件:C语言1.0
1、首先,要加入头文件math.h,其中pow(x,y)//其作用是计算x的y次方,x、y及函数值都是double型。
2、然后,在计算2的5次方,洞改源代码如下:#include"stdio.h"#include"math.h"main(){long totalint x = 2, y = 5total = pow(x,y)/*调用pow函数*/printf("%ld",total)getch()}。
3、然后,在包含cmath头文件,pow(4,3),第1个是底数,第2个是指数,#include <math.h>printf("纳档判%f\n", pow(1.2, 2)) // 结果1.44,1.2的平方。
4、然后,在C语言中,Pow函数这的是求一个数的多少此方,#include ltmath.hgt#include ltstdio.hgtvoid main( void ) { double x = 2.0, y = 3.0, zz = pow( x, y )printf("%.1f to the power of %.1f is %.1f\n",x, y, z )} LZ。
5、然后,用功能来计算x的y次幂,说明x应大于零,返回幂指数的结果://pow.c#include #include #include void main(){printf("4^5=%f",pow(4.,5.))getchar()}相关函数:pow10,添加头文件#include <math.h>,注意参数类型及返回类型均为double,是double类型,也使用变蠢尘量是int类型,要把类型进行转化。
需要准备的孝做材料分别有:电脑、C语言编译器。
1、首先,打开C语言编译器兄野,新建一个初始.cpp文件,例如:test.cpp。
2、在test.cpp文件中,输入C语言代码:
double a = 1000, n = 10, p = 0.001
printf("%lf", a * pow(1+p, n) - a)
3、编译器运行test.cpp文件,此时成功列出公式并计算巧尘衡出了利息结果。
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)