4-24 A-61635 December 2010
Examples
i
Description — any integer number.
Valid input examples
123
-456
Invalid input examples
123.456 must be integer. Decimal values are not allowed
-123. integer values cannot have a decimal point
n
Description – any integer or decimal number
Valid input examples
123
123.456
-123.
#(min, max) — used to specify a value that is greater than min and less than
max.
Examples
i(-100, 100)
Description — any integer number greater than –100 and less than 100
Valid input examples
-99
0
99
Invalid input examples
-100 too small, must be greater than –100
-99.9 must be an integer (decimal not allowed)
100 too large, must be less than 100
#(min, max] — used to specify a value that is greater than min and less than
or equal to max.
Examples
i(-100, 100]
Description — any integer number greater than –100 and less than or equal
to 100
Valid input examples
-99
0
100
Invalid input examples
-100 too small, must be greater than –100
-99.9 must be an integer (decimal not allowed)
101 too large, must be less than or equal to 100