c中求e的值,C 中求出e值

2021-07-28 03:05:35 字數 3025 閱讀 3308

1樓:匿名使用者

演算法沒有錯,錯的是你選錯了迴圈的極限。階乘積累的很快,超過100以後long就無法表示了,到了1000就成了nan,把1000換成20就可以了。

2樓:匿名使用者

100太大了,而且1/1000!那都小數點後多少位了,用20精度就夠了

3樓:匿名使用者

a 溢位了,a階乘到150,a的值都到了10的260次方了,知道10的260次方是什麼概念嗎?給你說吧,光的速度是最快的,3乘以10的8次方米每秒,一年就走9,460,730,472,580,800米,約等於10的16次方!a階乘到150都那麼利害了,更何況階乘到1000?

給你改了一下程式,可以得到更精確的數:

#include

using namespace std;

int main()

cout.precision( 20 ); //設定確定度cout << a << endl;

cout << s << endl;}

4樓:z一騎絕塵

#include

#include

using namespace std;

int main()

else

break;

//end if

};//end for

cout << "受精度限制:\t";

cout << "a =" << t << endl;

cout << "\ts = " << s << endl;

return 0;

} 這裡用t儲存a的上限值 以求最高精度。當然你也可以自己定義一個更大的資料型別只是我水平不夠。不做了

5樓:匿名使用者

給你一個絕對不溢位的演算法:

#include

using namespace std;

void main()

cout<

c++中求出e值

6樓:紫薇參星

你的抄求e值的c++程式,我幫你改完了,你看看吧(改動的地方見註釋)#include

using namespace std;

int main()

sum=sum+1;

printf("%.10f",sum);

return 0;}

一道c++程式設計題,求出e的值

7樓:匿名使用者

#include

#include

int main()

printf("%.10f", e);}

c++求e的近似值

8樓:匿名使用者

#include "stdafx.h"

#include

using namespace std;

void main()

cout << "e=" << y+1<< endl;

}請採納

c++ 計算e的近似值,求指導

9樓:

公式應該是:e=1+1/1!+1/2!+1/3!+..+1/n!

**:#include "iostream"

using namespace std;

int fact(int n)//求階乘

int sum=1;

int i;

if(n==0)

return 1;

else

for(i=1;i<=n;i++)

sum*=i;

return sum;

int main()

int i=1,j=1,n;

double e,t=0;

cin>>n;

e=0;

for(i=0;i<=n;i++)

t+=1.0/fact(i);

e=e+t;

cout<<"e="

c++中用哪個函式求e的n次冪的值

10樓:東風冷雪

pow 函式

#include載入標頭檔案

pow(e,n);

c++ 按下列公式,求e的近似值。e=1+1/1!+1/2!+1/3!+…+1/n!

11樓:匿名使用者

#include

#include

int main()

printf("%.10f", e);}

12樓:匿名使用者

寫個迴圈,累加就行了

13樓:90李鵬

看**片段

double x = 1, sum = 1;

for(int i = 1; i < 10000; ++i)

14樓:秦風依舊在

#include

using namespace std;

float calce(int n)

cout<

15樓:匿名使用者

#include

int main()

sum += 1.0/pro;

}printf("%f", sum);

return 0;}

16樓:匿名使用者

#include

using namespace std;

int main()

cout<<"e="<

return 0;}

17樓:匿名使用者

#include

void main()

printf("e=%lf\n",e);}

C 基礎程式題 根據公式e 1 1 3求e的近似值。精度要求為10 6請問為什麼總是

s 1.0 m 要不就是整數運算了結果是0 不能宣告m為整形,在計算的時候資料都是整 版形!只能這樣 權 include include include using namespace std int main cout return 0 s 1 m改為s 1.0 m c 程式設計 根據公式e 1 ...

高數中的e的值到底咋算出來的,數學中e的值是多少

計算方法如下 抄 襲已知函式 存在任意階的導數。將bai其在點du 處進行泰勒,有zhi 取peano形式dao的餘項 令上式有 故有即得 由此就可根據上式求解出 的具體數值。擴充套件資料1 e對於自然數的特殊意義 所有大於2的2n形式的偶數存在以 為中心的共軛奇陣列,每一組的和均為2n,而且至少存...

編寫程式,求e的值。e1,編寫程式,求e的值。e11112131n1用for

include double fun int n int main 編寫程式,求e的值.e 1 1 1 1 2 1 3 1 4 1 n 1 用for迴圈,計算前30項 include stdio.h int mul int n else float func int n int main print...