Template:Floor: Difference between revisions
From Vigyanwiki
Template>Verdy p m (there's a bug for negative numbers, correcting and testing) |
Template>Verdy p m (there's a bug for negative numbers, correcting and testing) |
||
Line 3: | Line 3: | ||
}}|{{#expr: | }}|{{#expr: | ||
({{{1}}} - 0.5) round 0 | ({{{1}}} - 0.5) round 0 | ||
}}</includeonly><noinclude> | }}}}</includeonly><noinclude> | ||
Implements the [[floor function]]. | Implements the [[floor function]]. | ||
Revision as of 19:11, 24 April 2006
Implements the floor function.
Usage: {{floor|<value>}}.
Examples:
- {{floor|3.9}} = 3.
- {{floor|3.5}} = 3.
- {{floor|3.1}} = 3.
- {{floor|3.0}} = 3.
- {{floor|1.0}} = 1.
- {{floor|0.9}} = 0.
- {{floor|0.5}} = 0.
- {{floor|0.1}} = -0.
- {{floor|0.0}} = 0.
- {{floor|-0.1}} = -1.
- {{floor|-0.5}} = -1.
- {{floor|-0.9}} = -1.
- {{floor|-1.0}} = -1.
- {{floor|-3.0}} = -3.
- {{floor|-3.2}} = -4.
- {{floor|-3.5}} = -4.
- {{floor|-3.9}} = -4.