ApCoCoA-1:Num.Floor: Difference between revisions

From ApCoCoAWiki
Jan (talk | contribs)
No edit summary
Jan (talk | contribs)
No edit summary
Line 37: Line 37:


<seealso>
<seealso>
  <see>Ceil</see>
  <see>Num.Ceil</see>
  <see>FPart</see>
  <see>Num.FPart</see>
  <see>PrintLn</see>
  <see>PrintLn</see>
</seealso>
</seealso>

Revision as of 13:21, 7 October 2009

Floor

Maps a rational number to the next smallest integer.

Syntax

Num.Floor(Num:RAT):INT

Description

Maps a rational number Num to the next smallest integer.

  • @param Num A rational number.

  • @return The next smallest integer.

Example

Num.Floor(8.1);
Num.Floor(-8.1);
Num.Floor(8);
8
-------------------------------
-9
-------------------------------
8
-------------------------------



See also

Num.Ceil

Num.FPart

PrintLn