RosettaCodeData/Task/Formatted-numeric-output/FutureBasic/formatted-numeric-output.basic

7 lines
131 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
window 1, @"Formatted Numeric Output", (0,0,480,270)
2024-10-16 18:07:41 -07:00
// option 1
2023-07-01 11:58:00 -04:00
print using "0000#.###";7.125
2024-10-16 18:07:41 -07:00
// option 2
printf @"%09.3f",7.125