当前位置:首页 > 行业动态 > 正文

c语言开根号怎么写

在C语言中,可以使用数学库函数sqrt()来计算一个数的平方根,下面是详细的步骤和示例代码:

1、包含头文件:

“`c

#include <math.h>

“`

2、使用sqrt()函数计算平方根:

“`c

double num = 9.0; // 要计算平方根的数

double result = sqrt(num); // 调用sqrt函数计算平方根

“`

3、打印结果:

“`c

printf("The square root of %.2f is %.2f

", num, result);

“`

完整的示例代码如下所示:

#include <stdio.h>
#include <math.h>
int main() {
    double num = 9.0; // 要计算平方根的数
    double result = sqrt(num); // 调用sqrt函数计算平方根
    printf("The square root of %.2f is %.2f
", num, result); // 打印结果
    return 0;
}

运行上述代码,输出结果为:

The square root of 9.00 is 3.00

注意:在使用sqrt()函数之前,需要包含头文件<math.h>,为了得到更精确的结果,可以将结果存储在double类型的变量中,并使用格式化输出函数printf()来控制输出的小数位数。

0