赞
踩
转载自:https://blog.csdn.net/weixin_37609825/article/details/79850874
-
- #include<stdio.h>
- #include<math.h>
- int main(){
- printf("%f\n",log(10)); //以e为底的对数函数
- printf("%f\n",log10(100)); //以10为底的对数函数
- printf("%f\n",log(8)/log(2)); //计算log2^8,运用换底公式
- printf("%f\n",exp(1)); //计算自然常数e
- return 0;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。