x的自然對數(shù)用log(x)表示
創(chuàng)新互聯(lián)是專業(yè)的濠江網(wǎng)站建設(shè)公司,濠江接單;提供成都網(wǎng)站制作、做網(wǎng)站、外貿(mào)營銷網(wǎng)站建設(shè),網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行濠江網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊,希望更多企業(yè)前來合作!
常用對數(shù)用log10(x)表示
#includestdio.h
#includemath.h
int main()
{int i;
for(i=1;i=10;i++)
printf("log10(%d)=%lf\n",i,log10(i));
return 0;
}
C語言中沒有以a為底b為真數(shù)的對數(shù)函數(shù);只有以常用對數(shù)10為底的對數(shù)或自然對數(shù)e為底的對數(shù)(即Ig、In),此時就要用到換底公式來換成以e或者10為底的對數(shù)來表示出以a為底b為真數(shù)的對數(shù)表達(dá)式,從而來處理某些實際問題。
我?guī)湍悴楹瘮?shù)表了,double就已經(jīng)足夠了,我們換底為10,調(diào)用函數(shù)double
result=log10(x),然后注意除法,小心分母的數(shù)據(jù)類型,必須為double,否則很有可能出錯,這就是我的建議祝你好運~編程愉快~~
1、C語言中,有兩個log函數(shù),分別為log10和log函數(shù),具體用法如下:
2、函數(shù)名: log10
功 能: 對數(shù)函數(shù)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、函數(shù)名: log
功 能: 對數(shù)函數(shù)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;
}
#include stdio.h#include math.h
void main()
{
double i = 2, j =4;
printf("log2,4 = %f\n",log(j)/log(i));
}
//log函數(shù)是以e為底的,還有一個log10以10為底,可以利用logi,j=loge,j/loge,i來算。