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

2021-07-28 03:06:38 字數 3025 閱讀 5595

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 中define名字空值,請問C 中 define NULL 0與 define NULL void 0 有什麼區別?都是指空指標嗎?

if defined head h define head h 這裡應該是標頭檔案具體的內容 endif 這一段是為了防止別的檔案多次include當前檔案而造成重複定義錯。head h只是為了區分當前檔案是否已經被包含,並沒有給定具體的值。所以cout 防止被多次include具體過程如下 第一次...

c 中的函式exp x 是不是求e的x次方的

c 中的 自。e的x次方的函式,如 exp 1 表示e的1次方 e 2.718281828 exp 0 表示e的0次方 1 exp 2 表示e的平方 7.3890561 e是一個常數,等於2.718281828 exp 是一個指數函式,用來求 e 底數 的 x 次冪 次方 的值。擴充套件資料 常數e...

C中怎麼獲取textbox的中輸入的值

如果你的 textbox 不是使用伺服器控制元件或沒有runat server 那麼提交表單請使用專 request textboxname 跟asp裡差不多,只不過屬asp裡是用 而不是。反之,請使用一樓的方法 string strtxt textboxid.text.tostring 希望能幫到...