Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

C 教程

C语言首页 C语言简介 C语言入门 C语言语法 C语言输出 C语言注释 C语言变量 C语言数据类型 C语言常量 C语言运算符 C语言布尔值 C语言 If...Else 语句 C语言 Switch 语句 C语言 While 循环 C语言 For 循环 C语言 Break/Continue 语句 C语言数组 C语言字符串 C语言用户输入 C语言内存地址 C语言指针

C语言函数

C语言函数 C语言函数参数 C语言作用域 C语言函数声明 C语言递归 C语言数学函数

C语言文件操作

C语言创建文件 C语言写入文件 C语言读取文件

C语言结构体

C语言结构体

C语言枚举

C语言枚举

C语言内存管理

C语言内存管理

C语言参考

C语言参考 C语言关键字 C语言 <stdio.h> C语言 <stdlib.h> C语言 <string.h> C语言 <math.h> C语言 <ctype.h>

C语言示例

C语言示例 C语言实际案例 C语言练习 C语言测验 C语言编译器 C语言认证

C 语言 Math log() 函数

❮ 数学函数


示例

返回不同数字的自然对数

const double E = 2.718281828;
printf("%f", log(6.0));
printf("%f", log(E));
printf("%f", log(2.0));
printf("%f", log(1.0));
printf("%f", log(0.0));
printf("%f", log(-1.0));
亲自试一试 »

定义和用法

log() 函数返回一个数字的自然对数。

log() 函数在 <math.h> 头文件中定义。

自然对数是以 e 为底的对数。e 的值约为 2.718282。一些 <math.h> 库的实现包含一个常量 M_E,但不能保证其可用性。


语法

以下之一

log(double number);

参数值

参数 描述
number 必需。指定要计算对数的值。
如果该值为负数,则返回 NaN(非数字)。
如果该值为 0,则返回 -infinity。

技术细节

返回值 一个 double 值,表示一个数字的自然对数。

❮ 数学函数


相关页面

C语言函数教程

C语言数学函数教程


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.