BUG: EN and ES Edit Descriptors Cause Incorrect Output

ID: Q149134


The information in this article applies to:
  • Microsoft Fortran PowerStation for Windows 95 and Windows NT, version 4.0


SYMPTOMS

Writing formatted REAL output using the EN or ES edit descriptor causes the output to be formattted incorrectly.


STATUS

Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.


MORE INFORMATION

Sample Code to Illustrate Problem


C Compile options needed: none

      real*8 :: a = 0.0001

      WRITE (*,'(1X,A,EN15.4)')    'EN descriptor:  ', a
      WRITE (*,'(1X,A,ES15.4)')    'ES descriptor:  ', a
      WRITE (*,'(1X,A,E15.4)')     'E descriptor:   ', a

      END 

Program Output

EN descriptor: 100.000E-05
ES descriptor: 10.000E-04
E descriptor: .1000E-03

Correct Ouput

EN descriptor: 10.000E-05
ES descriptor: 1.0000E-04
E descriptor: .1000E-03

Additional query words: 4.00

Keywords : kbFortranPS kbLangFortran
Version : :4.0
Platform : NT WINDOWS
Issue type :


Last Reviewed: November 1, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.