C語言中計(jì)算一個(gè)數(shù)的N次方可以用庫函數(shù)pow來實(shí)現(xiàn)。函數(shù)原型:double pow(double x, double y)。
創(chuàng)新互聯(lián)建站長期為上千家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對(duì)不同對(duì)象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺(tái),與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為東坡企業(yè)提供專業(yè)的做網(wǎng)站、網(wǎng)站建設(shè),東坡網(wǎng)站改版等技術(shù)服務(wù)。擁有十載豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。
舉例如下:
double?a?=?pow(3.14,?2);??//?計(jì)算3.14的平方。
注:使用pow函數(shù)時(shí),需要將頭文件#includemath.h包含進(jìn)源文件中。
拓展資料:
次方運(yùn)算是數(shù)學(xué)運(yùn)算,我們可能在其他語言中比如VB中見過冪運(yùn)算符,在VB中計(jì)算2的3次方,可以直接使用2^3就可以算出結(jié)果。C標(biāo)準(zhǔn)庫中有兩個(gè)可以解決解決我們的冪運(yùn)算問題,分別是math.h和tgmath.h。
用pow函數(shù)
pow函數(shù)的形式:pow(double x,double y);用來求解x的y次方。
使用dupow函數(shù)時(shí),如果變量原先定義為整型,需要強(qiáng)制轉(zhuǎn)換為浮點(diǎn)型。
舉例:
double a = pow(3.14, 2);? // 計(jì)算3.14的平方。
注:使用pow函數(shù)時(shí),需要將頭文件#includemath.h包含進(jìn)源文件中。
擴(kuò)展資料:
Power(Number,Power)。
#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;
}
參考資料來源:百度百科-power
C語言中計(jì)算一個(gè)數(shù)的N次方可以用庫函數(shù)pow來實(shí)現(xiàn)。函數(shù)原型:double pow(double x, double y)。
代碼如下:
#include stdio.h
#include math.h
int main( )
{ ?
printf("%f",pow(x,y));
return 0;
}
注:使用pow函數(shù)時(shí),需要將頭文件#includemath.h包含進(jìn)源文件中。、
擴(kuò)展資料:
其他方法表示一個(gè)數(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語言中計(jì)算x的n次方可以用庫函數(shù)pow來實(shí)現(xiàn)。函數(shù)原型:double pow(double x, double n)。
具體的代碼如下:
#include stdio.h
#include math.h
int main( )
{ ?
printf("%f",pow(x,n));
return 0;
}
注:使用pow函數(shù)時(shí),需要將頭文件#includemath.h包含進(jìn)源文件中。
擴(kuò)展資料:
使用其他的方法得到x的n次方:
#includestdio.h
double power(double x,int n);
main( )
{
double x;
int n;
printf("Input x,n:");
scanf("%lf,%d",x,n);
printf("%.2lf",power(x,n));
}
double power(double x,int n)
{
double a=1.0;
int i;
for(i=1;i=n;i++)
a*=x;
return a;
}