重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
C语言中计算一个数的N次方可以用库函数pow来实现。函数原型:double pow(double x, double y)。
创新互联建站专注于桦川网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供桦川营销型网站建设,桦川网站制作、桦川网页设计、桦川网站官网定制、成都微信小程序服务,打造桦川网络公司原创品牌,更为您提供桦川网站排名全网营销落地服务。
代码如下:
#include stdio.h
#include math.h
int main( )
{
printf("%f",pow(x,y));
return 0;
}
注:使用pow函数时,需要将头文件#includemath.h包含进源文件中。、
扩展资料:
其他方法表示一个数的n次方:
#include stdio.h
int main( )
{ int i,k = n; for(i = 1;i n;i++)
{ k *= 2;
}
printf("%d",k);
return 0;
}
c语言中表示乘方的函数为pow()
头文件:#include math.h
函数原型:double pow(double x, double y);
函数说明:The pow() function returns the value of x raised to the power of y. pow()函数返回x的y次方值。
例:
#include stdio.h
#include math.h
void main()
{
double pw;
int a=2 ;
pw=pow(a,10); //a的10次方
printf("%d^10=%g\n", a,pw );
}
相关函数:
float powf(float x, float y); //单精度乘方
long double powl(long double x, long double y); //长双精度乘方
double sqrt(double x); //双精度开方
float sqrtf(float x); //单精度开方
long double sqrtl(long double x); //长双精度开方
有两个函数可以实现,double pow(double x, double y),double pow10(int p)
下面是这两个函数的使用方法,个人建议用:pow10(n)
函数名: pow
功 能: 指数函数(x的y次方)
用 法: double pow(double x, double y);
程序例:
#include math.h
#include stdio.h
int main(void)
{
double x = 2.0, y = 3.0;
printf("%lf raised to %lf is %lf\n", x, y, pow(x, y));
return 0;
}
函数名: pow10
功 能: 指数函数(10的p次方)
用 法: double pow10(int p);
程序例:
#include math.h
#include stdio.h
int main(void)
{
double p = 3.0;
printf("Ten raised to %lf is %lf\n", p, pow10(p));
return 0;
}
1、头文件:#include
2、原型:
double pow(double x, double y);
pow() 函数用来求 x 的 y 次幂(次方)
pow()用来计算以x 为底的 y 次方值,然后将结果返回。设返回值为 ret,则 ret = xy。
3、举例如下:
double a = pow(4, 2); // 计算4的平方
4、可能导致错误的情况:
如果底数 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。
注意:1、使用pow函数时,需要将头文件#include包 含进源文件中。
2、用pow(x,y)的话要用到math.h头文件。
扩展资料:
1、 三角函数: double sin (double);正弦 double cos (double);余弦 double tan (double);正切
2 、反三角函数: double asin (double); 结果介于[-PI/2, PI/2] double acos (double); 结果介于[0, PI] double atan (double); 反正切(主值), 结果介于[-PI/2, PI/2] double atan2 (double, double); 反正切(整圆值), 结果介于[-PI/2, PI/2]
3 、双曲三角函数: double sinh (double); double cosh (double); double tanh (double);
4 、指数与对数: double exp (double); double sqrt (double);开平方 double log (double); 以e为底的对数 double log10 (double);以10为底的对数 double pow(double x, double y);计算以x为底数的y次幂 float powf(float x, float y); 功能与pow一致,只是输入与输出皆为浮点数
5 、取整: double ceil (double); 取上整 double floor (double); 取下整
6 、绝对值: double fabs (double);求绝对值 double cabs(struct complex znum) ;求复数的绝对值
7 、标准化浮点数: double frexp (double f, int *p); 标准化浮点数, f = x * 2^p, 已知f求x, p ( x介于[0.5, 1] ) double ldexp (double x, int p); 与frexp相反, 已知x, p求f
8 、取整与取余: double modf (double, double*); 将参数的整数部分通过指针回传, 返回小数部分 double fmod (double, double); 返回两参数相除的余数
9 、其他: double hypot(double x, double y);已知直角三角形两个直角边长度,求斜边长度 double ldexp(double x, int exponent);计算x*(2的exponent次幂) double poly(double x, int degree, double coeffs [] );计算多项式 nt matherr(struct exception *e);数学错误计算处理程序