1,要加入頭文件math.h
2,pow(x,y);//其作用是計算x的y次方。x、y及函數(shù)值都是double型
例:
我要計算2的5次方
源代碼如下:
#include"stdio.h"
#include"math.h"
main()
{
longtotal;
intx=2,y=5;
total=pow(x,y);/*調(diào)用pow函數(shù)*/
printf("%ld",total);
getch();
}
1,要加入頭文件math.h
2,pow(x,y);//其作用是計算x的y次方。x、y及函數(shù)值都是double型
例:
我要計算2的5次方
源代碼如下:
#include"stdio.h"
#include"math.h"
main()
{
longtotal;
intx=2,y=5;
total=pow(x,y);/*調(diào)用pow函數(shù)*/
printf("%ld",total);
getch();
}