externfloatpow(floatx,floaty)
用法:#include
功能:计算x的y次幂。
说明:x应大于零,返回幂指数的结果。
举例:
//pow.c
#include
#include
#include
voidmain()
{
printf("4^5=%f",pow(4.,5.));
getchar();
}
相关函数:pow10
externfloatpow(floatx,floaty)
用法:#include
功能:计算x的y次幂。
说明:x应大于零,返回幂指数的结果。
举例:
//pow.c
#include
#include
#include
voidmain()
{
printf("4^5=%f",pow(4.,5.));
getchar();
}
相关函数:pow10