Diferencia entre revisiones de «Implementación de INT ()»

De ArcoWiki
Saltar a: navegación, buscar
(Página creada con «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,...»)
 
(Sin diferencias)

Revisión actual del 09:29 7 jun 2018

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"