Re: [問題] 可以判斷整數嗎?

看板Fortran作者 (所指千歌音之處)時間14年前 (2010/12/26 17:07), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串7/9 (看更多)
program Err implicit none integer(4) :: i,j,k,iNum real(4) :: x,rTemp,dx !real(8) :: x,rTemp,dx iNum = 25 x = 1.0 do i=1,iNum rTemp = sqrt(x) x = (tan(atan(exp(log(rTemp*rTemp))))) + 1.0 dx = abs(x - float(iNum + 1)) write(*,*) dx end do ! real(4) , Final dx = 3.8146973E-06 ! real(8) , Final dx = 1.776356839400250E-014 stop end : 以下的 C語言程式設計, : double 就是 fortran 的 real*8, : 經過 25次的 複雜運算,產生的 : 絕對誤差如下 : 謹 提供參考 : #if 0 : dx= 5.684342e-014 : 請按任意鍵繼續 . . . : #endif : // ---------------------------------------------- : #include <stdio.h> : #include <math.h> : #include <process.h> : // ---------------------------------------------- : template <class T> : T sqr(T x) : { : return(x*x); : }// end of sqr() : // ---------------------------------------------- : void main() : { : int no, i; : double x, dx; : no= 25; : x= 1.0; : for (i=1;i<=no;i++) { : x= (tan(atan(exp(log(sqr(sqrt(x))))))) + 1.0; : } : dx= fabs(x - (no + 1)); : printf("\n dx= %.6le\n", dx); : system("pause"); : }// end of main() -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 140.115.60.193
文章代碼(AID): #1D5mN2Ez (Fortran)
討論串 (同標題文章)
文章代碼(AID): #1D5mN2Ez (Fortran)