你代码错了,看下,原型吧!函数原型: double pow ( double a , double b )
使用方式: pow ( x , y ),功能:计算 x y 。
例如: pow ( 2.2 , 3.5 )返回值为 2.2 3.5 。 。原型:在TC2.0中原型为extern float pow(float x, float y); ,而在VC6.0中原型为double pow( double x, double y );
头文件:math.h
功能:计算x的y次幂。
返回值:x应大于零,返回幂指数的结果。
举例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;
}
[
本帖最后由 A13433758072 于 2011-9-12 17:38 编辑 ]