Toggle menu
14
236
69
27.3K
Kenshi Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Purpose

Returns a string based on the mathematical parity of the number. It calculates whether or not a given number is odd or even.

Usage

Copy and paste the template below:

{{Parity | <!-- input value --> | <!-- output if even (optional) --> | <!-- output if odd (optional) --> }}

Examples

  • {{Parity|4}} → even
  • {{Parity|9}} → odd
  • {{Parity|-15}} → odd
  • {{Parity|4|foo|bar}} → foo
  • {{Parity|9|foo|bar}} → bar
  • {{Parity|-15|foo|bar}} → bar

An error message is produced if no input value or a non-integral input value is supplied:

TemplateData

No description.

Template parameters

This template prefers inline formatting of parameters.

ParameterDescriptionTypeStatus
Input value1

The number whose parity is to be determined

Example
0, 1, 2, -46, -57, +6, 6373
Numberrequired
Output if even2

Customised output if the input number is even

Default
even
Unknownoptional
Output if odd3

Customised output if the input number is odd

Default
odd
Unknownoptional