Fortran溢出算法

时间:2013-10-19 01:47:52

标签: algorithm fortran fortran90

我需要知道,我的溢出算法有什么问题?在Fortran中我必须做一个算法,当它到达溢出中断时返回增量“n”的数量。

program overflow

  integer::n,i,fact;

  fact = 1;
  n = 50;

  do i=1,n,1
     fact=fact*i;
     if ((fact==abs(fact)).and.(fact /= 0)) then
        print*,"F!=",fact;
        n=n+1;
        !print*,"Overflow=",n;
     end if;
  end do;   

  print*,n;

end program overflow

它包含负值,并且在达到意味着“溢出”的数字之前在factorial中有“突变”,但它是假的,n应该是15.

1 个答案:

答案 0 :(得分:0)

我从未成为Fortran程序员,但也许你的返回值应该是双倍的。