pow()函數(shù)用來求x的y次冪,x、y及函數(shù)值都是double型 ,其原型為:double pow(double x, double y)。
我們提供的服務(wù)有:網(wǎng)站設(shè)計(jì)制作、成都做網(wǎng)站、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、彝良ssl等。為數(shù)千家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的彝良網(wǎng)站制作公司
實(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ò)誤,也可能沒有;這跟庫(kù)的實(shí)現(xiàn)有關(guān)。
如果底數(shù) x 是 0,指數(shù) y 是負(fù)數(shù),可能會(huì)導(dǎo)致?domain error 或pole error 錯(cuò)誤,也可能沒有;這跟庫(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ù)——百度百科
#include stdio.h
#include math.h
int main(void)
{
double a,b,c,d;
while(scanf("%lf%lf%lf%lf",a,b,c,d)!=EOF)
printf("%.2lf\n",pow((pow((a-c),2)-pow((b-d),2)),0.5));
return 0;
}
LZ printf 和 scanf 函數(shù)用錯(cuò)了。。
仔細(xì)比對(duì)下。。
pow函數(shù)在c語言中常用于開根號(hào),下文講解使用方法:
工具/原料:
聯(lián)想 拯救者y7000p
Windows 11
CodeBlocks 17.12
1、引入數(shù)學(xué)頭文件
打開C語言文件,在上面引入math頭文件。
2、設(shè)置變量
初始化兩個(gè)int型變量。
3、設(shè)置初始值
設(shè)置第一個(gè)變量的初始數(shù)值。
4、使用pow函數(shù)
使用變量b接收pow函數(shù)的返回值,參數(shù)為a和0.5。
5、顯示結(jié)果
使用printf函數(shù)顯示開根號(hào)的結(jié)果即可。