Group: comp.lang.fortran · Group Profile · Search for Misunderstude in comp.lang.fortran
Author: Herman D. Knoble
Date: Sep 29, 2006 06:17
... is the best advice. More advice, use Double Precision for real variables. Second, while not advised, you can use Fortran 77 Single Precision as in the following example. (Apologies if I misunderstud your question). Skip Knoble C Main Program real y, x external f common /fshare/ y x=2.0 y=1.0 do i=1,100 y=y*1.20D0 print *, A(...
|