C語言中計算一個數(shù)的N次方可以用庫函數(shù)pow來實現(xiàn)。函數(shù)原型:double pow(double x, double y)。
創(chuàng)新互聯(lián)建站專注于樺川網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供樺川營銷型網(wǎng)站建設(shè),樺川網(wǎng)站制作、樺川網(wǎng)頁設(shè)計、樺川網(wǎng)站官網(wǎng)定制、成都微信小程序服務(wù),打造樺川網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供樺川網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
代碼如下:
#include stdio.h
#include math.h
int main( )
{ ?
printf("%f",pow(x,y));
return 0;
}
注:使用pow函數(shù)時,需要將頭文件#includemath.h包含進(jìn)源文件中。、
擴展資料:
其他方法表示一個數(shù)的n次方:
#include stdio.h
int main( )
{ ? ?int i,k = n;? for(i = 1;i n;i++)
{? ? k *= 2;
}?
printf("%d",k);
return 0;
}
c語言中表示乘方的函數(shù)為pow()
頭文件:#include math.h
函數(shù)原型:double pow(double x, double y);
函數(shù)說明:The pow() function ?returns the value of x raised to the power of y. ?pow()函數(shù)返回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?);
}
相關(guān)函數(shù):
?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); ? //長雙精度開方
有兩個函數(shù)可以實現(xiàn),double pow(double x, double y),double pow10(int p)
下面是這兩個函數(shù)的使用方法,個人建議用:pow10(n)
函數(shù)名: pow
功 能: 指數(shù)函數(shù)(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;
}
函數(shù)名: pow10
功 能: 指數(shù)函數(shù)(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() 函數(shù)用來求 x 的 y 次冪(次方)
pow()用來計算以x 為底的 y 次方值,然后將結(jié)果返回。設(shè)返回值為 ret,則 ret = xy。
3、舉例如下:
double a = pow(4, 2); ?// 計算4的平方
4、可能導(dǎo)致錯誤的情況:
如果底數(shù) x 為負(fù)數(shù)并且指數(shù) y 不是整數(shù),將會導(dǎo)致 domain error 錯誤。
如果底數(shù) x 和指數(shù) y 都是 0,可能會導(dǎo)致 domain error 錯誤,也可能沒有;這跟庫的實現(xiàn)有關(guān)。
如果底數(shù) x 是 0,指數(shù) y 是負(fù)數(shù),可能會導(dǎo)致 domain error 或 pole error 錯誤,也可能沒有;這跟庫的實現(xiàn)有關(guān)。
如果返回值 ret 太大或者太小,將會導(dǎo)致 range error 錯誤。
錯誤代碼:
如果發(fā)生 domain error 錯誤,那么全局變量 errno 將被設(shè)置為 ?EDOM;
如果發(fā)生 pole error 或 range error 錯誤,那么全局變量 errno 將被設(shè)置為 ERANGE。
注意:1、使用pow函數(shù)時,需要將頭文件#include包 ? ? ? ? ?含進(jìn)源文件中。
2、用pow(x,y)的話要用到math.h頭文件。
擴展資料:
1、 三角函數(shù): double sin (double);正弦 ? double cos (double);余弦 ? double tan (double);正切
2 、反三角函數(shù): ? double asin (double); 結(jié)果介于[-PI/2, PI/2] ? double acos (double); 結(jié)果介于[0, PI] ? double atan (double); 反正切(主值), 結(jié)果介于[-PI/2, PI/2] ? double atan2 (double, double); 反正切(整圓值), 結(jié)果介于[-PI/2, PI/2]
3 、雙曲三角函數(shù): ? double sinh (double); ? double cosh (double); ? double tanh (double);
4 、指數(shù)與對數(shù): ? double exp (double); ? double sqrt (double);開平方 ? double log (double); 以e為底的對數(shù) ? double log10 (double);以10為底的對數(shù) ? double pow(double x, double y);計算以x為底數(shù)的y次冪 ? float powf(float x, float y); 功能與pow一致,只是輸入與輸出皆為浮點數(shù)
5 、取整: ? double ceil (double); 取上整 ? double floor (double); 取下整
6 、絕對值: ? double fabs (double);求絕對值 ? double cabs(struct complex znum) ;求復(fù)數(shù)的絕對值
7 、標(biāo)準(zhǔn)化浮點數(shù): ? double frexp (double f, int *p); 標(biāo)準(zhǔn)化浮點數(shù), 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*); 將參數(shù)的整數(shù)部分通過指針回傳, 返回小數(shù)部分 ? double fmod (double, double); 返回兩參數(shù)相除的余數(shù)
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);數(shù)學(xué)錯誤計算處理程序