c语言log库
⑴ c语言中log函数怎么使用
#include <stdio.h>#include <math.h>
void main()
{
double i = 2, j =4;
printf("log2,4 = %f\n",log(j)/log(i));
}
//log函数是以e为底的,还有一个log10以10为底,可以利用logi,j=loge,j/loge,i来算。
⑵ 在C语言log函数
函数名: log10
功 能: 对数函数log,以10为底
用 法: double log10(double x);
程序例:#include <math.h>
#include <stdio.h>int main(void)
{
double result;
double x = 800.6872; result = log10(x);
printf("The common log of %lf is %lf\n", x, result); return 0;
} 函数名: log
功 能: 对数函数log,以e(2.71828)为底
用 法: double log(double x);
程序例:#include <math.h>
#include <stdio.h>int main(void)
{
double result;
double x = 800.6872; result = log(x);
printf("The common log of %lf is %lf\n", x, result); return 0;
}
⑶ C语言中log函数怎么使用
先引用
#include <math.h>
假设要计算log3(9)的值,因为C语言的logx是以e为底的相当于lnx,如果以其他数作为对数的底,必须写成
float i
i=log(9)/log(3);
⑷ C语言中log函数怎么使用呢
1、C语言中,有两个log函数,分别为log10和log函数,具体用法如下:
2、函数名: log10
功 能: 对数函数log,以10为底
用 法: double log10(double x);
程序示例:
#include <math.h>
#include <stdio.h>int main(void)
{
double result;
double x = 800.6872;
result = log10(x);
printf("The common log of %lf is %lf\n", x, result);
return 0;
}
3、函数名: log
功 能: 对数函数log,以e(2.71828)为底
用 法: double log(double x);
程序示例:
#include <math.h>
#include <stdio.h>int main(void)
{
double result;
double x = 800.6872;
result = log(x);
printf("The common log of %lf is %lf\n", x, result);
return 0;
}
⑸ 在c语言中log怎么输入
原型:double log (double x);
头文件:math.h
功能:计算以e 为底的对数值
程序例:
#include <math.h>
#include <stdio.h>
int main(void)
{
double result;
double x = 321.123;
result = log(x);
printf("The common log of %lf is %lf\n", x, result);
return 0;
}
C语言里面有该函数,所以输入一个双精度浮点数,对其进行函数变换即可生成其对数。
还有如果你的意思是输入对数进行幂运算的话有下面这个函数
原型:extern float pow(float x, float y);
用法:#include <math.h>
功能:计算x的y次幂。
说明:x应大于零,返回幂指数的结果。
举例:
// pow.c
#include <stdlib.h>
#include <math.h>
#include <conio.h>
void main()
{
printf("4^5=%f",pow(4.,5.));
getchar();
}
⑹ C语言中,自然对数是怎样表示的举个例子
C语言中直接提供的是e为底的自然对数log,和以10为底的常用对数log10,其他对数写个函内数就可以。
#include <stdio.h>
#include <math.h>
double loga(double n, double base);
int main (void)
{
double a, b, c;
a = log(exp(1));
b = log10(10);
c = loga(100, 5);
printf("%lf %lf %lf", a, b, c);
}
double loga(double n, double base)
{ return log(n) / log(base);}
(6)c语言log库扩展阅读:
如果一个变量名后面跟着一个有数字的中括号,这个声明就是数组声明。字符串也是一种数组。它们以ASCII的NULL作为数组的结束。要特别注意的是,中括号内的索引值是从0算起的。
C语言的字符串其实就是以'