Hi,
I need to compute a series of factorials for high numbers, however, for very high numbers, normal factorials easily break down.
Let me firts post my code
PROGRAM FactorialTest
IMPLICIT NONE
REAL :: Func1,Func2
WRITE(*,*)Func1(10,5),Func2(10,5)
WRITE(*,*)Func1(20,10),Func2(20,10)
END...