用庫函數(shù)math.h 這里面的log就是數(shù)學(xué)里面ln(底數(shù)為e的那個(gè)家伙)的意思。如下代碼例子
十年的新賓網(wǎng)站建設(shè)經(jīng)驗(yàn),針對設(shè)計(jì)、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。全網(wǎng)整合營銷推廣的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整新賓建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。創(chuàng)新互聯(lián)從事“新賓網(wǎng)站設(shè)計(jì)”,“新賓網(wǎng)站推廣”以來,每個(gè)客戶項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。
#includestdio.h
#includemath.h
main()
{
double?k;
k=log(2.71828);
printf("?%f?",k);
k=log(8)/log(2);
printf("?%f?",k);
}
第一k是ln(e)的意思,e約為2.71828,屏幕上打印出值為0.999999,
第二k是求底數(shù)為2真數(shù)為8的值log2(8)=ln(8) /ln(2) (這個(gè)數(shù)學(xué)轉(zhuǎn)化式我不用多說),打印出來的結(jié)果是3.000000
1、C語言中,有兩個(gè)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;
}
首先在C語言中要用到指數(shù)、對數(shù)的相關(guān)公式,需要引入math.h。另外ln是以e為底數(shù),lg是以10為底數(shù)。
代碼如下:
#includestdio.h
#includemath.h
void main()
{
double exponent, base;
exponent = 3.14;
printf("ln(%f) = %.2f\n", exponent, log(exponent));//以e為底數(shù)的對數(shù)
exponent = 100;
printf("lg(%.f) = %.2f\n", exponent, log10(exponent));//以10為底數(shù)的對數(shù)
base = 5, exponent = 100;
printf("log_%.f(%.f) = %.2f\n", base, exponent, log(exponent)/log(base));//換底公式
return 0;
}
在求log_5(100)時(shí)需要用到“換底公式”:log_5(100) = ln(100)/ln(5)。
擴(kuò)展資料:
math.h文件中包含的函數(shù)主要分為以下幾類:
1、三角函數(shù)、反三角函數(shù)、雙曲三角函數(shù)。
2、指數(shù)、對數(shù)。
3、取整、絕對值。
4、標(biāo)準(zhǔn)化浮點(diǎn)數(shù)。
涉及參數(shù)類型為double類型。
參考資料:
百度百科——換底公式
百度百科——math.h
1, getchar()函數(shù)
getchar函數(shù)的作用是等待用戶的輸入并讀取字符的數(shù)值并顯示相應(yīng)的字符到屏幕上,在用戶輸入回車鍵以后才返回相應(yīng)的第一個(gè)輸入字符的數(shù)值到調(diào)用函數(shù),函數(shù)原型的聲明如下: int getchar(void)。
2,getch()和getche()函數(shù)
getch函數(shù)的作用是從鍵盤只接受一個(gè)字符,而且并不把這個(gè)字符顯示出來,也不用按下回車鍵就返回到調(diào)用函數(shù)。換句話說,當(dāng)用戶按了一個(gè)鍵后,并不在屏幕上顯示用戶按的是什么,就繼續(xù)運(yùn)行函數(shù)后面的代碼,而用戶不按任意鍵時(shí)就一直等待用戶輸入。
getcher函數(shù)與getch函數(shù)作用相同,也是從鍵盤只接受一個(gè)字符,也不用按下回車鍵就返回到調(diào)用函數(shù),但這個(gè)字符會(huì)被顯示出來。
3,具體代碼如下:
#includestdio.h
double?MYLOG(double?a)
{
int?N?=?15;//我們?nèi)×饲?5+1項(xiàng)來估算
int?k,nk;
double?x,xx,y;
x?=?(a-1)/(a+1);
xx?=?x*x;
nk?=?2*N+1;
y?=?1.0/nk;
for(k=N;k0;k--)
{
nk?=?nk?-?2;
y?=?1.0/nk+xx*y;
}
return?2.0*x*y;
}
int?main()
{
double?b?;
b?=?MYLOG(2);
printf("%.10f",b);
getch();
return?0;
}
1、C語言中,有兩個(gè)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;
}
當(dāng)前標(biāo)題:c語言怎么寫對數(shù)函數(shù),c語言怎么使用對數(shù)
本文地址:http://www.rwnh.cn/article38/dssdisp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站制作、移動(dòng)網(wǎng)站建設(shè)、云服務(wù)器、靜態(tài)網(wǎng)站、微信小程序、面包屑導(dǎo)航
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)