C语言pow函数

发布网友 发布时间:2022-04-22 07:01

我来回答

4个回答

热心网友 时间:2022-05-13 00:09

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函数——百度百科

热心网友 时间:2022-05-13 01:27

pow函数是C语言的一个库函数。
函数原型:double
pow(double
x,
double
y);


能:计算x^y


值:计算结果
举例如下:
double x = 3.14, y=2, z;
z = pow(x, y); // 计算x^y,即3.14的平方
注:使用pow函数的时候,需要将头文件#include<math.h>包含进源文件中。

热心网友 时间:2022-05-13 03:02

1,要加入头文件 math.h
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();
}

热心网友 时间:2022-05-13 04:53

原型:extern float pow(float x, float y);

用法:#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;

}

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com