ceil.bmx 132 B

1234567
  1. Rem
  2. Ceil(x#) returns the smallest integral value not less than x
  3. End Rem
  4. for i#=-1 to 1 step .2
  5. print "Ceil("+i+")="+Ceil(i)
  6. next