c语言中log函数的用法
时间: 2023-09-28 07:10:04 浏览: 389
在C语言中,log函数用于计算对数。有两种常用的log函数:log和log10。
log函数是以e为底的对数函数,可以使用以下方式调用:
```c
#include <stdio.h>
#include <math.h>
int main() {
printf("%f\n", log(10)); // 以e为底的对数函数
printf("%f\n", log(8) / log(2)); // 计算log2^8,运用换底公式
printf("%f\n", exp(1)); // 计算自然常数e
return 0;
}
```
输出结果如下:
```
2.302585
3.000000
2.718282
```
log10函数是以10为底的对数函数,可以使用以下方式调用:
```c
#include <stdio.h>
#include <math.h>
int main() {
printf("%f\n", log10(100)); // 以10为底的对数函数
return 0;
}
```
输出结果如下:
```
2.000000
```
需要注意的是,log函数的参数必须是正数,否则会返回NaN(Not a Number)。另外,如果要计算以其他底数为基的对数,可以使用换底公式,如上述代码中计算log2^8的例子。
#### 引用[.reference_title]
- *1* [c语言对数函数log的使用](https://blog.csdn.net/weixin_37609825/article/details/79850874)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item]
- *2* [【C语言】log,对数函数的使用](https://blog.csdn.net/Math_Boy_W/article/details/125090796)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文