您的位置首页百科知识

sqrt函数用法

sqrt函数用于计算一个埋好配非负实数的平方根。sqrt的函数原型: 在VC6.0中的math.h头文件的函数原型为double sqrt(double);

说明:sqrt即Square Root Calculations(平弯指方根计算),通过这种运算可以考验CPU的浮点能力。

 sqrt()函数的语法袜游:

sqrt函数用法

 Parameter(s): x – a number whose square root to be calculated.

参数: x –要计算其平方根的数字。

Return value: double – it returns double value that is the square root of the given number x.

返回值: double-返回double值,它是给定数字x的平方根。

Example:

sqrt函数用法