BUG: EN and ES Edit Descriptors Cause Incorrect OutputLast reviewed: March 28, 1996Article ID: Q149134 |
The information in this article applies to:
SYMPTOMSWriting formatted REAL output using the EN or ES edit descriptor causes the output to be formattted incorrectly.
STATUSMicrosoft 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 ProblemC 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 reference words: 4.00
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |