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 was a bug for negative numbers, corrected and tested, compacting)
Line 1: Line 1:
<includeonly>{{#ifexpr:{{{1}}}=({{{1}}} round 0)|{{#expr:
<includeonly>{{#ifexpr:{{{1}}}=({{{1}}} round 0)|{{#expr:{{{1}}}+0}}|{{#expr:({{{1}}} - 0.5) round 0}}}}</includeonly><noinclude>
  {{{1}}}+0
}}|{{#expr:
  ({{{1}}} - 0.5) round 0
}}}}</includeonly><noinclude>
Implements the [[floor function]].
Implements the [[floor function]].



Revision as of 19:12, 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.