I compile this small program:
REAL A
REAL*4 B
REAL*8 C
DOUBLE PRECISION D
A=1.0/0.00006061201
B=1.0/0.00006061201
C=1.0/0.00006061201
D=1.0/0.00006061201
write(*,*)A
write(*,*)B
write(*,*)C
write(*,*)D
stop
end
and the results:
16498.3809
16498.3809
16498.3809
16498.3809
Where are the differences?
Thank you.
Received on Sat Nov 22 1997 - 18:36:07 NZDT