系统只提供下面参数类型的pow函数……
C/C++ code
double pow(double, double)long double std::pow(long double, int) float std::pow(float, int)double std::pow(double, int)long double std::pow(long double, long double)float std::pow(float, float)
例子:
int main(int argc, char *argv[]){ int x=2.0,y=3,z; z=pow(x,y); return z;}
pow(x,y)求的是x的y次方;
加上#include
#include
#include
void main()
{
cout<
//假设要计算2的10次方
#include
#include
void main()
{
int data = pow(2,10);
printf("%d",data);
}
//假设要计算2的10次方
#include
#include
void main()
{
int data = pow(2,10);
printf("%d",data);
}
#include
using namespace std;
里边
是x^y的意思
返回类型是double型