ceil.bmx 158 B

123456789
  1. Rem
  2. Ceil(x#) returns the smallest integral value not less than x
  3. End Rem
  4. SuperStrict
  5. For Local i:Float = -1 To 1 Step .2
  6. Print "Ceil("+i+")="+Ceil(i)
  7. Next