INTEGER
The INTEGER function returns the integer portion of a numeric value.
Syntax 1
Syntax 2
Arguments
• arg-1 must be a numeric data item or literal.
Result
The function returns a number that is the integer portion of arg-1.
Examples
Example - Display the integer part of a data item with virtual.
working-storage section. 77 price pic 9(5)v99. ... procedure division. ... move 134.99 to price. display function integer(price) |