Formatted numeric output: Difference between revisions

Content added Content deleted
(added a solution for Factor)
Line 1,833: Line 1,833:
00007.125
00007.125
</pre>
</pre>

=={{header|Visual Basic}}==
{{works with|Visual Basic|VB6 Standard}}
<lang vb>
Debug.Print Format$(7.125, "00000.000")
</lang>
Output (the decimal separator used depends on the system's language settings):
<lang vb>
00007.125
</lang>


=={{header|XSLT}}==
=={{header|XSLT}}==