pow()函數(shù)用來求x的y次冪,x、y及函數(shù)值都是double型 ,其原型為:double pow(double x, double y)。
沙洋網(wǎng)站建設公司創(chuàng)新互聯(lián),沙洋網(wǎng)站設計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為沙洋上千余家提供企業(yè)網(wǎng)站建設服務。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設公司要多少錢,請找那個售后服務好的沙洋做網(wǎng)站的公司定做!
實例代碼如下:
#includestdio.h
#includemath.h
void main()
{
double x = 2, y = 10;
printf("%f\n",pow(x, y));
return 0;
}
擴展資料:
在調用pow函數(shù)時,可能導致錯誤的情況:
如果底數(shù) x 為負數(shù)并且指數(shù) y 不是整數(shù),將會導致 domain error錯誤。
如果底數(shù) x 和指數(shù) y 都是 0,可能會導致 domain error?錯誤,也可能沒有;這跟庫的實現(xiàn)有關。
如果底數(shù) x 是 0,指數(shù) y 是負數(shù),可能會導致?domain error 或pole error 錯誤,也可能沒有;這跟庫的實現(xiàn)有關。
如果返回值 ret 太大或者太小,將會導致range error 錯誤。
錯誤代碼:
如果發(fā)生 domain error 錯誤,那么全局變量 errno 將被設置為? EDOM;
如果發(fā)生 pole error 或 range error 錯誤,那么全局變量 errno 將被設置為 ERANGE。
參考資料:
pow函數(shù)——百度百科
c語言中pow函數(shù)用的步驟。
電腦:華為MateBook14
系統(tǒng):Windows10
軟件:C語言1.0
1、首先,要加入頭文件math.h,其中pow(x,y);//其作用是計算x的y次方,x、y及函數(shù)值都是double型。
2、然后,在計算2的5次方,源代碼如下:#include"stdio.h"#include"math.h"main(){long total;int x = 2, y = 5;total = pow(x,y); /*調用pow函數(shù)*/printf("%ld",total);getch();}。
3、然后,在包含cmath頭文件,pow(4,3),第1個是底數(shù),第2個是指數(shù),#include?math.h printf("%f\n",?pow(1.2,?2));?//?結果1.44,1.2的平方。
4、然后,在C語言中,Pow函數(shù)這的是求一個數(shù)的多少此方,#include lt;math.hgt; #include lt;stdio.hgt; void main( void ) { double x = 2.0, y = 3.0, z; z =?pow( x, y ); printf("%.1f to the power of %.1f is %.1f\n",x, y, z ); } LZ。
5、然后,用功能來計算x的y次冪,說明x應大于零,返回冪指數(shù)的結果://pow.c#include?#include?#include?void main(){printf("4^5=%f",pow(4.,5.));getchar();}相關函數(shù):pow10,添加頭文件#include math.h,注意參數(shù)類型及返回類型均為double,是double類型,也使用變量是int類型,要把類型進行轉化。
power在C語言中沒有特別的含義,既不是關鍵字也不是庫函數(shù)的函數(shù)名。
可能是編程人員自定義的一個變量名或函數(shù)名。
舉例如下:
int?power;?????????//?定義一個int類型的變量,變量名為power
double?power;??//?定義一個double類型的變量,變量名為power
int?power(int?a,?int?b)??//?//?自定義一個函數(shù),函數(shù)名為power
{
return?a+b;
}
C語言中只有pow庫函數(shù),沒有power庫函數(shù)。
函數(shù)原型:double pow(double x, double y);
功 ? ? ? 能:計算x^y
返 回 ?值:計算結果
如:
double?x?=?2,?y;
y?=?pow(3.14,?x);?//?計算3.14的平方