C 语言的 pow() 函数

作用:

Calculates x raised to the power of y.

函数原型:

double pow( double x, double y );

Required Header:

Compatibility:

ANSI

Return Value

pow returns the value of x y x^{y} xy. No error message is printed on overflow or underflow.

Parameters

x: Base
y: Exponent

特殊 x 和 y 的返回值:

在这里插入图片描述

程序示例:

#include
#include
int main(void)
{
	double x = 2.0, y = 3.0;
	printf("%.1f to the power of %.1f is %.1f.\n", x, y, pow(x, y));

	return 0;
}

结果:

2.0 to the power of 3.0 is 8.0.

你可能感兴趣的:(C,语言,c语言)