本文目录一览:
- 1、c语言怎样输入对数
- 2、lg1.5在C语言程序中如何表示
- 3、如何用c语言编辑出lg函数并带值?
- 4、c语言中的log,ln,lg怎么编写
- 5、C语言中lg怎么编写?
- 6、C语言中log函数怎么使用啊
c语言怎样输入对数
#includestdio.h
#include math.h
void main()
{
float x=5,y;
y=log(x);
printf("%f\n",y);
}
扩展资料:
C语言中使用对数函数的方法
log()函数:返回以e为底的对数值
头文件:
1#include
log() 函数返回以 e 为底的对数值,其原型为:
1double log (double x);
log()用来计算以e为底的 x 的对数值,然后将结果返回。设返回值为 ret,则
1x = eret
如果 x 为负数或 0,则会发生错误并设置 errno 值。错误代码:
EDOM:参数x 为负数;
ERANGE:参数x
为零值,零的对数值无定义。
注意:使用 GCC 编译时请加入-lm。
lg1.5在C语言程序中如何表示
表示为log10(1.5)即可。lg1.5中的lg是数学中以10为底的对数函数的一种书写表示,在C语言中对应的库函数名是log10。比如:
//#include "stdafx.h"//If the vc++6.0, with this line.
#include "stdio.h"
#include "math.h"//log10在这个头文件中
int main(void){
printf("lg1.5 = %g\n",log10(1.5));
return 0;
}输出是lg1.5
=
0.176091
如何用c语言编辑出lg函数并带值?
#include stdio.h
#include math.h
void main()
{
float x;
scanf("%f",x);
(x=(float)0)?printf("输入有误!"):printf("lgx=%f",log10(x));
}
运行示例截图:
c语言中的log,ln,lg怎么编写
首先在C语言中要用到指数、对数的相关公式,需要引入math.h。另外ln是以e为底数,lg是以10为底数。
代码如下:
#includestdio.h
#includemath.h
void main()
{
double exponent, base;
exponent = 3.14;
printf("ln(%f) = %.2f\n", exponent, log(exponent));//以e为底数的对数
exponent = 100;
printf("lg(%.f) = %.2f\n", exponent, log10(exponent));//以10为底数的对数
base = 5, exponent = 100;
printf("log_%.f(%.f) = %.2f\n", base, exponent, log(exponent)/log(base));//换底公式
return 0;
}
在求log_5(100)时需要用到“换底公式”:log_5(100) = ln(100)/ln(5)。
扩展资料:
math.h文件中包含的函数主要分为以下几类:
1、三角函数、反三角函数、双曲三角函数。
2、指数、对数。
3、取整、绝对值。
4、标准化浮点数。
涉及参数类型为double类型。
参考资料:
百度百科——换底公式
百度百科——math.h
C语言中lg怎么编写?
在 C中预处理先加上头文件math.h然后log(x)便是常用对数,x为double型变量,望采纳
C语言中log函数怎么使用啊
1、C语言中,有两个log函数,分别为log10和log函数,具体用法如下:
2、函数名: log10
功 能: 对数函数log,以10为底
用 法: double log10(double x);
程序示例:
#include math.h
#include stdio.hint 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.hint main(void)
{
double result;
double x = 800.6872;
result = log(x);
printf("The common log of %lf is %lf\n", x, result);
return 0;
}