在c語言中,pow函數(shù)實(shí)現(xiàn)了數(shù)學(xué)上冪運(yùn)算的功能。舉個(gè)例子,比如求2^8的值,就可以調(diào)用pow(2,8)獲得。
網(wǎng)站的建設(shè)成都創(chuàng)新互聯(lián)專注網(wǎng)站定制,經(jīng)驗(yàn)豐富,不做模板,主營網(wǎng)站定制開發(fā).小程序定制開發(fā),H5頁面制作!給你煥然一新的設(shè)計(jì)體驗(yàn)!已為成都紙箱等企業(yè)提供專業(yè)服務(wù)。
需要準(zhǔn)備的材料分別有:電腦、C語言編譯器。
1、首先,打開C語言編譯器,新建一個(gè)初始.cpp文件,例如:test.cpp。
2、在test.cpp文件中,輸入C語言代碼:
double a = 1000, n = 10, p = 0.001;
printf("%lf", a * pow(1+p, n) - a);
3、編譯器運(yùn)行test.cpp文件,此時(shí)成功列出公式并計(jì)算出了利息結(jié)果。
1,要加入頭文件 math.h
2,pow(x,y);//其作用是計(jì)算x的y次方。x、y及函數(shù)值都是double型
例:
我要計(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();
}
原型:extern float pow(float x, float y);
用法:#include math.h
功能:計(jì)算x的y次冪。
說明:x應(yīng)大于零,返回冪指數(shù)的結(jié)果。
舉例:
// pow.c
#include stdlib.h
#include math.h
#include conio.h
void main()
{
printf("4^5=%f",pow(4.,5.));
getchar();
}
相關(guān)函數(shù):pow10
原型:在TC2.0中原型為extern
float
pow(float
x,
float
y);
,而在VC6.0中原型為double
pow(
double
x,
double
y
);
頭文件:math.h
功能:計(jì)算x的y次冪。
返回值:x應(yīng)大于零,返回冪指數(shù)的結(jié)果。
舉例1:(在VC6.0中運(yùn)行通過)
#include
#include
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;
}
舉例2:
(在TC2.0中運(yùn)行通過)
//
pow.c
#include
#include
main()
{
clrscr();
//
clear
screen
textmode(0x00);
//
6
lines
per
LCD
screen
printf("4^5=%f",pow(4.,5.));
getchar();
return
0;
}
pow()函數(shù)用來求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ò)誤,也可能沒有;這跟庫的實(shí)現(xiàn)有關(guān)。
如果底數(shù) x 是 0,指數(shù) y 是負(fù)數(shù),可能會(huì)導(dǎo)致?domain error 或pole error 錯(cuò)誤,也可能沒有;這跟庫的實(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ù)——百度百科