C 库函数 - log10()
C 语言教程
· 2019-02-23 09:13:13
描述
C 库函数 double log10(double x) 返回 x 的常用对数(基数为 10 的对数)。
声明
下面是 log10() 函数的声明。
double log10(double x)
参数
- x -- 浮点值。
返回值
该函数返回 x 的常用对数,x 的值大于 0。
实例
下面的实例演示了 log10() 函数的用法。
#include <stdio.h> #include <math.h> int main () { double x, ret; x = 10000; /* 计算 log10(10000) */ ret = log10(x); printf("log10(%lf) = %lf\n", x, ret); return(0); }
让我们编译并运行上面的程序,这将产生以下结果:
log10(10000.000000) = 4.000000
点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html
Learning Web Design
Jennifer Niederst Robbins / O'Reilly Media / 2007-6-15 / USD 44.99
Since the last edition of this book appeared three years ago, there has been a major climate change with regard to web standards. Designers are no longer using (X)HTML as a design tool, but as a means......一起来看看 《Learning Web Design》 这本书的介绍吧!