C++中pow(x,y)函数怎么用?最好给举个例子…
发布网友
发布时间:2022-05-01 09:17
我来回答
共6个回答
热心网友
时间:2022-04-22 12:41
系统只提供下面参数类型的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;}
热心网友
时间:2022-04-22 13:59
pow(x,y)求的是x的y次方;
加上#include<math.h>就可以了;
#include<iostream.h>
#include<math.h>
void main()
{
cout<<pow(2,3);
}
热心网友
时间:2022-04-22 15:34
//假设要计算2的10次方
#include <stdio.h>
#include <math.h>
void main()
{
int data = pow(2,10);
printf("%d",data);
}
热心网友
时间:2022-04-22 17:25
//假设要计算2的10次方
#include <stdio.h>
#include <math.h>
void main()
{
int data = pow(2,10);
printf("%d",data);
}
热心网友
时间:2022-04-22 19:33
#include<cmath>
using namespace std;
里边
是x^y的意思
返回类型是double型
热心网友
时间:2022-04-22 21:58
原型:在TC2.0中原型为extern float pow(float x, float y); ,而在VC6.0中原型为double pow( double x, double y );
头文件:math.h
功能:计算x的y次幂。
返回值:x应大于零,返回幂指数的结果。
返回类型:double型,int,float会给与警告!
举例1:(在VC6.0中运行通过)
#include <math.h>
#include <stdio.h>
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中运行通过)
// pow.c
#include <syslib.h>
#include <math.h>
main()
{
clrscr(); // clear screen
textmode(0x00); // 6 lines per LCD screen
printf("4^5=%f",pow(4.,5.));
getchar();
return 0;
}
参考于:http://ke.baidu.com/view/114061.htm