I use Lahey Fortran 95 version 5.6 in my programming. Unfortunately, I do not know why I get Inaccurate result when I run my program. For example, after running the following code:
PROGRAM TEST
IMPLICIT NONE
REAL:: A
DO A=1.0,3.0,0.2
WRITE (*,*) A
END DO
END PROGRAM TEST
I get the following...