Real*8 or Double Precision Must Contain an Exponent

Last reviewed: December 11, 1995
Article ID: Q31173
The information in this article applies to:
  • Microsoft FORTRAN for MS-DOS, versions 4.0, 4.01, 4.1, 5.0 and 5.1
  • Microsoft FORTRAN PowerStation for MS-DOS, versions 1.0 and 1.0a
  • Microsoft FORTRAN PowerStation 32 for Windows NT, version 1.0 and 4.0

SUMMARY

When using real*8 or double-precision variables, the FORTRAN manual says double-precision real constants have the same form as single-precision constants, except that the letter D is used for exponents instead of the letter E, and that an exponent part is mandatory.

To get 15 digits of precision into your real*8 variables, you must declare the constant with an exponent. If the exponent is omitted, the number is interpreted as a single-precision constant.

MORE INFORMATION

The following is a code example of the proper way to set a double-precision variable with the D:

         real*8 doub_real
   c      double precision doub_real
   c      either real*8 or double precision needs to use the D.


         doub_real = .55555555555555555555D0
         print '(f20.18)',doub_real
         end


Additional reference words: kbinf 4.00 4.10 5.00 5.10
KBCategory: kbprg kbcode
KBSubcategory: FORTLngIss


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: December 11, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.