c语言开根号代码是什么

编辑: admin 分类: .net 发布时间: 2022-06-06 来源:互联网

在C语言中,开根号的代码是“sqrt(浮点值x)”;例如“sqrt(4.0)”,对4进行平方根运算,结果为2。sqrt()是c语言内置的开根号运算函数,其运算结果是函数变量的算术平方根;该函数既不能运算负数值,也不能输出虚数结果。

本教程操作环境:windows7系统、C++17版本、Dell G3电脑。

在头文件中加入#include<math.h>

之后使用sqrt即可,可以用double定义

举个例子:

#include <math.h>
#include <stdio.h>
#include <stdlib.h>
double sqrt(double n);
int main(void)
{
double x = 3.1415926540, result;
result = sqrt(x);
printf("The square root of %lf is %lf", x, result);
return 0;
}

4`T`_FLY4C4G@9KZ5C_YJNN.jpg

推荐教程:《C#》

以上就是c语言开根号代码是什么的详细内容,更多请关注海外IDC网其它相关文章!

【本文由:高防cdn http://www.558idc.com/gfcdn.html 复制请保留原URL】