Unexpected PRINT USING ".##" Rounding for .xx5 (28164)



The information in this article applies to:

  • Microsoft QuickBASIC 4.0
  • Microsoft QuickBASIC 4.0b
  • Microsoft QuickBASIC 4.5
  • Microsoft BASIC Compiler for MS-DOS and OS/2 6.0
  • Microsoft BASIC Compiler for MS-DOS and OS/2 6.0b
  • Microsoft Basic Professional Development System (PDS) for MS-DOS and MS OS/2 7.0
  • Microsoft Basic Professional Development System (PDS) for MS-DOS and MS OS/2 7.1

This article was previously published under Q28164

SUMMARY

This article describes a case where the PRINT USING statement appears to round numeric constants to unexpected values.

For the following statement
   PRINT USING " ###.##"; .245, .255, .265, .275, .285
				
the above Basic versions give the following output
   0.25  0.25  0.26  0.28  0.28
				
while you might have expected the following rounding
   0.25  0.26  0.27  0.28  0.29
				
or with IEEE rounding (to the nearest even integral value), you would expect the following:
   0.24  0.26  0.26  0.28  0.28
				
This behavior occurs because the internal representation of the numbers used by Basic (IEEE floating-point format) differs slightly from the decimal numbers typed into the source code.

IEEE floating-point format cannot accurately represent numbers that are not of the form 1.x to the power of y (where x and y are base 2 numbers). The internal representation will be slightly more or slightly less than the decimal numbers typed into the source code.

The internal representations are correctly rounded and displayed in the above program. This is not a software problem.

If you want floating-point constants in the source code to be exactly stored, you can append the constant with the CURRENCY type-cast operator, an "at sign" (@) character. The CURRENCY data type is only found in Microsoft Basic PDS 7.00 and 7.10. The following example rounds to 0.25, 0.26, 0.27, 0.28, 0.29 as you may have wanted:
   PRINT USING " ###.##"; .245@, .255@, .265@, .275@, .285@
				
Note that the CURRENCY data type can store 19 digits, but only 4 digits can be used after the decimal point.

Modification Type:MinorLast Reviewed:8/16/2005
Keywords:KB28164