pow(x,y)函数的用法及实现算法

pow函数是求次方的函数, 函数原型是double pow(double a,double b); 使用时应包含math.h头文件。 1,C/C++中的数学函数编辑 原型:在TC2.0中原型为extern float pow(float x, float y); ,而在VC6.0中原型为double pow( double x, double y ); 头文件:math.h/cmath(C++中)
相关文章
相关标签/搜索