c語(yǔ)言中pow函數(shù)用的步驟。
10年積累的成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作、外貿(mào)營(yíng)銷網(wǎng)站建設(shè)經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問(wèn)題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先網(wǎng)站設(shè)計(jì)后付款的網(wǎng)站建設(shè)流程,更有黔江免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
電腦:華為MateBook14
系統(tǒng):Windows10
軟件:C語(yǔ)言1.0
1、首先,要加入頭文件math.h,其中pow(x,y);//其作用是計(jì)算x的y次方,x、y及函數(shù)值都是double型。
2、然后,在計(jì)算2的5次方,源代碼如下:#include"stdio.h"#include"math.h"main(){long total;int x = 2, y = 5;total = pow(x,y); /*調(diào)用pow函數(shù)*/printf("%ld",total);getch();}。
3、然后,在包含cmath頭文件,pow(4,3),第1個(gè)是底數(shù),第2個(gè)是指數(shù),#include?math.h printf("%f\n",?pow(1.2,?2));?//?結(jié)果1.44,1.2的平方。
4、然后,在C語(yǔ)言中,Pow函數(shù)這的是求一個(gè)數(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、然后,用功能來(lái)計(jì)算x的y次冪,說(shuō)明x應(yīng)大于零,返回冪指數(shù)的結(jié)果://pow.c#include?#include?#include?void main(){printf("4^5=%f",pow(4.,5.));getchar();}相關(guān)函數(shù):pow10,添加頭文件#include math.h,注意參數(shù)類型及返回類型均為double,是double類型,也使用變量是int類型,要把類型進(jìn)行轉(zhuǎn)化。
pow()函數(shù)用來(lái)求x的y次冪,x、y及函數(shù)值都是double型 ,其原型為:double pow(double x, double y)。
實(shí)例代碼如下:
#includestdio.h
#includemath.h
void main()
{
double x = 2, y = 10;
printf("%f\n",pow(x, y));
return 0;
}
擴(kuò)展資料:
在調(diào)用pow函數(shù)時(shí),可能導(dǎo)致錯(cuò)誤的情況:
如果底數(shù) x 為負(fù)數(shù)并且指數(shù) y 不是整數(shù),將會(huì)導(dǎo)致 domain error錯(cuò)誤。
如果底數(shù) x 和指數(shù) y 都是 0,可能會(huì)導(dǎo)致 domain error?錯(cuò)誤,也可能沒(méi)有;這跟庫(kù)的實(shí)現(xiàn)有關(guān)。
如果底數(shù) x 是 0,指數(shù) y 是負(fù)數(shù),可能會(huì)導(dǎo)致?domain error 或pole error 錯(cuò)誤,也可能沒(méi)有;這跟庫(kù)的實(shí)現(xiàn)有關(guān)。
如果返回值 ret 太大或者太小,將會(huì)導(dǎo)致range error 錯(cuò)誤。
錯(cuò)誤代碼:
如果發(fā)生 domain error 錯(cuò)誤,那么全局變量 errno 將被設(shè)置為? EDOM;
如果發(fā)生 pole error 或 range error 錯(cuò)誤,那么全局變量 errno 將被設(shè)置為 ERANGE。
參考資料:
pow函數(shù)——百度百科
pow()函數(shù)用來(lái)求x的y次冪,x、y及函數(shù)值都是double型 ,其原型為:double pow(double x, double y)。
實(shí)例代碼如下:
#includestdio.h
#includemath.h
void main()
{
double x = 2, y = 10;
printf("%f\n",pow(x, y));
return 0;
}
相關(guān)內(nèi)容:
C++提供以下幾種pow函數(shù)的重載形式:
double pow(double X,int Y);
float pow(float X,float Y);
float pow(float X,int Y);
long double pow(long double X,long double Y);
long double pow(long double X,int Y);
使用的時(shí)候應(yīng)合理設(shè)置參數(shù)類型,避免有多個(gè)“pow”實(shí)例與參數(shù)列表相匹配的情況。
其中較容易發(fā)生重載的是使用形如:
int X,Y;
int num=pow(X,Y);
這是一個(gè)比較常用的函數(shù),但是編譯器會(huì)提醒有多個(gè)“pow”實(shí)例與參數(shù)列表相匹配。
可以使用強(qiáng)制類型轉(zhuǎn)換解決這個(gè)問(wèn)題:num=pow((float)X,Y)。
原型:externfloatpow(floatx,floaty);
用法:#includemath.h
功能:計(jì)算x的y次冪。
說(shuō)明:x應(yīng)大于零,返回冪指數(shù)的結(jié)果。
舉例:
//pow.c
#includestdlib.h
#includemath.h
#includeconio.h
voidmain()
{
printf("4^5=%f",pow(4.,5.));
getchar();
}
相關(guān)函數(shù):pow10
當(dāng)前文章:c語(yǔ)言pow函數(shù)使用方法 c++pow函數(shù)用法
文章起源:http://jinyejixie.com/article36/dodhopg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、定制開(kāi)發(fā)、企業(yè)網(wǎng)站制作、電子商務(wù)、網(wǎng)站建設(shè)、網(wǎng)站排名
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
營(yíng)銷型網(wǎng)站建設(shè)知識(shí)