C 库函数 - log()
C 语言教程
· 2019-02-23 08:57:58
描述
C 库函数 double log(double x) 返回 x 的自然对数(基数为 e 的对数)。
声明
下面是 log() 函数的声明。
double log(double x)
参数
- x -- 浮点值。
返回值
该函数返回 x 的自然对数。
实例
下面的实例演示了 log() 函数的用法。
#include <stdio.h> #include <math.h> int main () { double x, ret; x = 2.7; /* 计算 log(2.7) */ ret = log(x); printf("log(%lf) = %lf", x, ret); return(0); }
让我们编译并运行上面的程序,这将产生以下结果:
log(2.700000) = 0.993252
点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html
Practical Vim, Second Edition
Drew Neil / The Pragmatic Bookshelf / 2015-10-31 / USD 29.00
Vim is a fast and efficient text editor that will make you a faster and more efficient developer. It’s available on almost every OS, and if you master the techniques in this book, you’ll never need an......一起来看看 《Practical Vim, Second Edition》 这本书的介绍吧!