C語言中數(shù)e(指數(shù)e)可以用exp( )函數(shù)表示。
成都創(chuàng)新互聯(lián)主營伽師網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,成都app軟件開發(fā),伽師h5成都微信小程序搭建,伽師網(wǎng)站營銷推廣歡迎伽師等地區(qū)企業(yè)咨詢
函數(shù)原型:double exp(double x);
功 ? ? ?能:計算e^x的值
返 回 值:計算結(jié)果
舉例:
double?x=1.5,?y;
y?=?exp(x);?????//?y的值就是e^1.5
注:使用exp函數(shù)時,需要將頭文件#includemath.h添加進源文件中。
#includelt;stdio.hgt;
#includelt;math.hgt;
main()
{
int x;
double y;
printf("Please input x:");
scanf("%d",x);
if(xgt;0)
{
y=exp(x);
}
else if(xlt;0)
{
y=exp(x);
}
else
{
printf("y==1\n");
}
printf("y=%f\n",y);
}
擴展資料:
printf()函數(shù)的用法
1.printf()函數(shù)的調(diào)用格式為:printf("lt;格式化字符串gt;",lt;參量表gt;);
//__stdcall
int __cdecl printf(const char*p,...);
...可變參數(shù)
printf在打印浮點數(shù),不論原來是雙精度還是單精度,都變?yōu)殡p精度(8字節(jié))
打印1字節(jié)(char)2字節(jié)(short)4字節(jié)(int)==gt;4字節(jié),除了long long(8字節(jié))
void main()
{
int a=10;
folat ft=12.25f;
printf("%d%d\n",a,ft);
}
%d格式控制符--不具有強轉(zhuǎn)能力
A格式化字符串包括兩部分內(nèi)容:
一部分是正常字符,這些字符將按原樣輸出;
另一部分是格式化規(guī)定字符,以"%"開始,后跟一個或幾個規(guī)定字符,用來確定輸出內(nèi)容格式。
1.d/i有符號十進制形式輸出(正數(shù)不輸出符號)
2.u無符號十進制形式輸出
3.o無符號八進制形式輸出(不輸出前綴0)
4.x無符號十六進制形式輸出(不輸出前綴Ox),并以小寫abcdef表示。
5.X無符號十六進制形式輸出(不輸出前綴Ox),并以大寫ABCDEF表示。
6.c輸出單個字符
7.s輸出字符串
8.f以小數(shù)形式輸出單、雙精度實數(shù)
9.E/e用科學(xué)計數(shù)法表示浮點數(shù)
10.G/g以%f或%e中較短的輸出寬度輸出單、雙精度實數(shù)
+++++++++
void main()
{
long long x=0x12345678901357;
printf("%x\n",x);//=gt;78 90 13 57
printf("%lx\n",x);//=gt;78 90 13 57
printf("%llx\n",x);//=gt;12345678901357
}
1、C語言有現(xiàn)場的常用數(shù)學(xué)函數(shù),所在函數(shù)庫為math.h、stdlib.h。
函數(shù)名及解釋:
int abs(int i) 返回整型參數(shù)i的絕對值
double cabs(struct complex znum) 返回復(fù)數(shù)znum的絕對值
double fabs(double x) 返回雙精度參數(shù)x的絕對值
long labs(long n) 返回長整型參數(shù)n的絕對值
double exp(double x) 返回指數(shù)函數(shù)ex的值
double frexp(double value,int *eptr) 返回value=x*2n中x的值,n存貯在eptr中
double ldexp(double value,int exp); 返回value*2exp的值
double log(double x) 返回logex的值
double log10(double x) 返回log10x的值
double pow(double x,double y) 返回xy的值
double pow10(int p) 返回10p的值
double sqrt(double x) 返回+√x的值
double acos(double x) 返回x的反余弦cos-1(x)值,x為弧度
double asin(double x) 返回x的反正弦sin-1(x)值,x為弧度
double atan(double x) 返回x的反正切tan-1(x)值,x為弧度
double atan2(double y,double x) 返回y/x的反正切tan-1(x)值,y的x為弧度
double cos(double x) 返回x的余弦cos(x)值,x為弧度
double sin(double x) 返回x的正弦sin(x)值,x為弧度
double tan(double x) 返回x的正切tan(x)值,x為弧度
double cosh(double x) 返回x的雙曲余弦cosh(x)值,x為弧度
double sinh(double x) 返回x的雙曲正弦sinh(x)值,x為弧度
double tanh(double x) 返回x的雙曲正切tanh(x)值,x為弧度
double hypot(double x,double y) 返回直角三角形斜邊的長度(z),x和y為直角邊的長度,z2=x2+y2
2、復(fù)雜的數(shù)學(xué)函數(shù)可以用自定義函數(shù)的形式實現(xiàn)。
例如:
double?ConerVelocity(int?A,?double?x1,?double?y1,?double?x2,?double?y2,?double?t1,?double?t2)
{
double?T,V;
T=acos(abs(x1?*?x2?+?y1?*?y2)/?sqrt(x1?*?x1?+y1?*?y1)/sqrt(x2?*?x2?+y2?*?y2));
V=?(A?*?(t2-t1))/(2*sin(T/2));
return?V;
}
在開始加上#include math.h;
程序中就可以調(diào)用pow(x,y)。
main()
{
double z;
z=pow(10,5);
printf("%lf/n",z);
}
輸出結(jié)果:
285.000000
擴展資料
c語言求自然對數(shù)的底e的指數(shù),可以使用函數(shù)exp().
exp()的頭文件:#include
exp()的函數(shù)原型:double exp(double x);
exp()函數(shù)的作用:返回e的x次方。
exp()的相關(guān)函數(shù):float expf(float x);
long double expl(long double x);
注:自然對數(shù)的底e叫做: 歐拉數(shù)(eula's number)
網(wǎng)站欄目:c語言中ex函數(shù)怎么表示,ex函數(shù)是什么函數(shù)
標題來源:http://jinyejixie.com/article38/dssejsp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供用戶體驗、標簽優(yōu)化、微信小程序、響應(yīng)式網(wǎng)站、軟件開發(fā)、動態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)