C 库函数 - sqrt()

C 语言教程 · 2019-02-23 09:57:56

描述

C 库函数 double sqrt(double x) 返回 x 的平方根。

声明

下面是 sqrt() 函数的声明。

double sqrt(double x)

参数

  • x -- 浮点值。

返回值

该函数返回 x 的平方根。

实例

下面的实例演示了 sqrt() 函数的用法。

#include <stdio.h>
#include <math.h>

int main ()
{

   printf("%lf 的平方根是 %lf\n", 4.0, sqrt(4.0) );
   printf("%lf 的平方根是 %lf\n", 5.0, sqrt(5.0) );
   
   return(0);
}

让我们编译并运行上面的程序,这将产生以下结果:

4.000000 的平方根是 2.000000
5.000000 的平方根是 2.236068

点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html

查看所有标签

Algorithm Design

Algorithm Design

Jon Kleinberg、Éva Tardos / Addison-Wesley / 2005-3-26 / USD 144.20

Algorithm Design introduces algorithms by looking at the real-world problems that motivate them. The book teaches students a range of design and analysis techniques for problems that arise in compu......一起来看看 《Algorithm Design》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

URL 编码/解码
URL 编码/解码

URL 编码/解码

MD5 加密
MD5 加密

MD5 加密工具