C 库函数 - fabs()
C 语言教程
· 2019-02-23 10:29:13
描述
C 库函数 double fabs(double x) 返回 x 的绝对值。
声明
下面是 fabs() 函数的声明。
double fabs(double x)
参数
- x -- 浮点值。
返回值
该函数返回 x 的绝对值。
实例
下面的实例演示了 fabs() 函数的用法。
#include <stdio.h> #include <math.h> int main () { int a, b; a = 1234; b = -344; printf("%d 的绝对值是 %lf\n", a, fabs(a)); printf("%d 的绝对值是 %lf\n", b, fabs(b)); return(0); }
让我们编译并运行上面的程序,这将产生以下结果:
1234 的绝对值是 1234.000000 -344 的绝对值是 344.000000
点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html
High Performance Python
Andrew Lewis / O'Reilly Media, Inc. / 2010-09-15 / USD 34.99
Chapter 1. Introduction Section 1.1. The High Performance Buzz-word Chapter 2. The Theory of Computation Section 2.1. Introduction Section 2.2. Problems Section 2.3. Models of Computati......一起来看看 《High Performance Python》 这本书的介绍吧!