圆周率小数点后1千位(附计算圆周率源代码)
圓周率計算c++源代碼(運行后輸入計算的位數)
計算的數值不要太大!30萬位我的電腦計算了一個小時!
#include <iostream> #include <cstdio> #include <cstring> using namespace std; int main() {long long int qw;cin>>qw;const int ARRSIZE=qw+10,DISPCNT=qw;char x[ARRSIZE],z[ARRSIZE];long long int a=1,b=3,c,d,Run=1,Cnt=0;memset(x,0,ARRSIZE);memset(z,0,ARRSIZE);x[1]=2;z[1]=2;while(Run&&(++Cnt<200000000)){d=0;for(long long int i=ARRSIZE-1;i>0;i--){c=z[i]*a+d;z[i]=c%10;d=c/10;}d=0; for(long long int i=0;i<ARRSIZE;i++) { c=z[i]+d*10; z[i]=c/b; d=c%b; } Run=0; for(long long int i=ARRSIZE-1;i>0;i--) { c=x[i]+z[i]; x[i]=c%10; x[i-1]+=c/10; Run|=z[i]; } a++; b+=2; } printf("π=%d.",x[1]); for(long long int i=0;i<DISPCNT;i++) printf("%d",(int)x[i+2]);cout<<endl;system("pause");return 0; }注:以下數據由C++編程實現,數據僅供參考。
圓周率小數點后1千位
π=3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461284756482337867831652712019091456485669234603486104543266482133936072602491412737245870066063155881748815209209628292540917153643678925903600113305305488204665213841469519415116094330572703657595919530921861173819326117931051185480744623799627495673518857527248912279381830119491298336733624406566430860213949463952247371907021798609437027705392171762931767523846748184676694051320005681271452635608277857713427577896091736371787214684409012249534301465495853710507922796892589235420199561121290219608640344181598136297747713099605187072113499999983729780499510597317328160963185950244594553469083026425223082533446850352619311881710100031378387528865875332083814206171776691473035982534904287554687311595628638823537875937519577818577805321712268066130019278766111959092164201989
總結
以上是生活随笔為你收集整理的圆周率小数点后1千位(附计算圆周率源代码)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 编写Test3.jsp,在JSP页面中静
- 下一篇: 随笔之人贵自知