Difference between revisions of "$floor"

From Scriptwiki
Jump to: navigation, search
m
 
(3 intermediate revisions by 3 users not shown)
Line 3: Line 3:
 
  $floor(N)
 
  $floor(N)
  
* ''N'' is the number you want the next lowest integer of.
+
* ''N'' is the number you want to round down to its next integer.
  
 
== Examples ==
 
== Examples ==
  
  $floor([[$pi]]) - will return ''3''
+
  $floor([[$pi]]) ;will return ''3''
  $floor(-4,99) - will return ''-5''
+
  $floor(-4.99) ;will return ''-5''
  
 
== See Also ==
 
== See Also ==
 
+
* [[$round]]
[[$round]], [[$ceil]] and [[$int]].
+
* [[$ceil]]  
 +
* [[$int]]
  
 
[[Category:Text and Number Identifiers]]
 
[[Category:Text and Number Identifiers]]

Latest revision as of 11:03, 2 July 2007

Returns N rounded to the next lowest integer.

$floor(N)
  • N is the number you want to round down to its next integer.

Examples

$floor($pi)  ;will return 3
$floor(-4.99)  ;will return -5

See Also