C语言中的POW函数怎么使用
“#include "stdio.h"
void main()
哪么POW的始怎么样的呢? 展开
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。
参考资料:
使用方法:
# include <math.h>//这个。其实没有也可以。
double x,y,z;//自己按需赋值。【1】
z=pow(x,y);
printf(“%lf\n【2】”,z【3】);//可以根据想输出几位,比如说输出一位小数%.1lf,来调整。
2. 备注项的其他形式
【1】赋值
(1) 当将”x”,”y”定义为int的时候,也可以,备注三也成立。
(2) 当将”z”定义为int的时候,也可以,只需要将printf的类型变成”%d”。
【2】“%lf”
因为,现在z的类型是double,所以使用“%lf”若使用“%d”,则总输出为零。
【3】“z”
要是这里想把“z”变成“pow(x,y)”也是可以的。
扩展资料
类型转换对于pow会产生的问题:
当将”z”定义为int,或者是printf的类型变成”%d”的时候,产生了一个由double变成int的转化问题。在这里,转化过程非常粗暴,会直接去掉小数,从而导致误差。
为了避免这个问题,又想要输出整数,可以采取的做法:
1) printf("%.0lf",pow(x,y));
2) printf("%d",(int)(pow(x,y)+0.5));//人为四舍五入
参考资料:百度百科——POW
2,pow(x,y);//其作用是计算x的y次方。x、y及函数值都是double型
例:
我要计算2的5次方
源代码如下:
#include"stdio.h"
#include"math.h"
main()
{
long total;
int x = 2, y = 5;
total = pow(x,y); /*调用pow函数*/
printf("%ld",total);
getch();
}
用法:#include <math.h>
功能:计算x的y次幂。
说明:x应大于零,返回幂指数的结果。
举例:
// pow.c
#include <syslib.h>
#include <math.h>
main()
{
clrscr(); // clear screen
textmode(0x00); // 6 lines per LCD screen
printf("4^5=%f",pow(4.,5.));
getchar();
return 0;
}