| A | B |
| PRINT USING “|######|”; 9146 | Numbers print right-justified |
| PRINT USING “#####.##”; 2652.2 | Always prints two decimal places |
| PRINT USING “#####.##”; 2652.212 | Round is needed |
| PRINT USING “+###”; 45 | Always prints plus or minus |
| PRINT USING “###+”; 45 | Prints the sign at the end |
| PRINT USING “###-”; 45 | Only prints the sign at end if number is negative |
| PRINT USING “**####.##”; 2.5 | Left and right fills with asterisks |
| PRINT USING “$$####.##”; 2.5 | Prints Floating dollar sign |
| PRINT USING “**$###.##”; 2.5 | Combine the * and $ for checks printing |
| PRINT USING “######,.##”; 3234.54 | places comma before the decimal |
| PRINT USING “####,.##, ”; 3234; 7832; 4326 | Repeating format string for all literals |
| PRINT USING “###”; 43567.54 | Not enough control codes %43568 |
| PRINT USING “_#_###.##_#_#”; 32.45 | printing of literals ##32.45## |