Implementación de INT ()

De ArcoWiki
Revisión del 09:29 7 jun 2018 de Slia (discusión | contribuciones) (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,...»)
(dif) ← Revisión anterior | Revisión actual (dif) | Revisión siguiente → (dif)
Saltar a: navegación, buscar

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"