Difference between revisions of "Template:Max"
Jump to navigation
Jump to search
imported>Verdy p m |
imported>Verdy p m |
||
| Line 1: | Line 1: | ||
<includeonly>{{#if:{{{1|}}}|{{#expr: | <includeonly>{{#if:{{{1|}}}|{{#expr: | ||
{{#if:{{{2|}}}| | {{#if:{{{2|}}}| | ||
| − | {{#if:{{{3|}}}|{{ | + | {{#if:{{{3|}}}|{{max|{{#ifexpr:({{{1}}})>({{{2}}})|{{{1}}}|{{{2}}}}}|3}} |
|{{#ifexpr:({{{1}}})>({{{2}}})|{{{1}}}|{{{2}}}}} | |{{#ifexpr:({{{1}}})>({{{2}}})|{{{1}}}|{{{2}}}}} | ||
}} | }} | ||
Revision as of 15:32, 24 April 2006
Evaluates and returns the maximum of a list of numeric expressions (with up to 16 parameters).
- Syntax:
- Examples:
- {{max}} = "".
- {{max|}} = "".
- {{max|-7}} = "-7".
- {{max|-7|}} = "-7".
- {{max|-7|5}} = "5".
- {{max|-7|5|}} = "5".
- {{max|-7|5|8}} = "Expression error: Unexpected < operator.".
- {{max|-7|5|8|-32|29|14|1}} = "Expression error: Unexpected < operator.".
- {{max|40*41|300+30}} = "1640".
- {{max|100+10|300+30|200+20}} = "Expression error: Unexpected < operator.".