To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
DROUND EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
DROUND Example
10 Number=656576
20 CLEAR SCREEN
30 FOR Roundto=1 TO 6
40 PRINT Roundto,DROUND(Number,Roundto) !Round to significant digits indicated by Roundto.
50 NEXT Roundto
60 END