floor.bmx 137 B

1234567
  1. Rem
  2. Floor(x!) returns the largest integral value not greater than x
  3. End Rem
  4. for i!=-1 to 1 step .2
  5. print "Floor("+i+")="+Floor(i)
  6. next