To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
int EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
int Example
10 J=INT(2.7)
20 PRINT J
30 K=INT(-2.7)
40 PRINT K
50 Number=34.8
60 Gif=INT(Number)
70 PRINT Gif
80 Y=44.54
90 PRINT "greatest integer function=";INT(Y)
100 END