Difference between revisions of "Implementation of INT()"
From ArcoWiki
(Created page with "Implementation of the is a standard DMIS 5.2 command which return the integer part of a number truncating the value. The command is: $$Begin Example… DECL/DOUBLE,dec...") |
m (1 revision imported) |
(No difference)
|
Revision as of 17:15, 24 October 2017
Implementation of the is a standard DMIS 5.2 command which return the integer part of a number truncating the value. The command is:
$$Begin Example… DECL/DOUBLE,decimal_number DECL/INTGR,integer_number decimal_number= ASSIGN/1.123456 integer_number=ASSIGN/INT(decimal_number) decimal_number= ASSIGN/1.654321 integer_number=ASSIGN/INT(decimal_number) $$ Also Return "1"