double MathSqrt( double x)
MathSqrt函数返回x的平方根。如果x为负值,MathSqrt返回不确定值(与NaN相同)。
参数:
x - 否定数值。
示例:
- double question=45.35, answer;
- answer=MathSqrt(question);
- if(question<0)
- Print("错误: MathSqrt 返回",答案," 答案");
- else
- Print("",问题,"的平方根为 ", 答案);
- //输入数据: 45.35 的平方根为6.73
复制代码
|