REM Using PRINT USING REM Penny Programmer REM 2/22/2001 ' REM Assign Variable LET number = 1045.239 ' REM Use PRINT USING for Output CLS PRINT number 'prints the raw number PRINT USING "#####.####"; number 'formats to 4 decimal places PRINT USING "#####"; number 'prints just the integer part PRINT USING "#####.##"; number 'formats to two decimal places & rounds PRINT USING "$#####.##"; number 'adds a dollar sign PRINT USING "$$#####.##"; number 'adds a floating dollar sign ' END