CLS FOR a = 1 TO 20 n1 = RND * 100 n2 = INT(n1) ' Rounds numbers towards a smaller value. n3 = n1 \ 1 ' Mathematically correct rounding. PRINT n1, n2, n3 NEXT a