Función Ruby Integer to_d() con ejemplo

La función to_d en Ruby convierte el valor de int como BigDecimal.

Sintaxis : número.to_d

Parámetro : la función toma el número entero que se convertirá en BigDecimal.

Valor de retorno : la función devuelve el valor BigDecimal de int.

Ejemplo 1:

# Ruby program for to_d function 
   
require 'bigdecimal'
require 'bigdecimal/util'
   
# Initializing the number
num1 = 5
num2 = 10 ** 100 
num3 = 1678 
num4 = 189790
    
# Prints the int as big-decimal 
puts num1.to_d
puts num2.to_d
puts num3.to_d
puts num4.to_d

Salida :

 0.5e1
0.1e101
0.1678e4
0.18979e6

Ejemplo #2:

# Ruby program for to_d function 
   
require 'bigdecimal'
require 'bigdecimal/util'
   
# Initializing the number
num1 = 5
num2 = 19**18
num3 = 2**45
num4 = 888
    
# Prints the int as big-decimal 
puts num1.to_d
puts num2.to_d
puts num3.to_d
puts num4.to_d

Salida :

0.5e1
0.104127350297911241532841e24
0.35184372088832e14
0.888e3

Publicación traducida automáticamente

Artículo escrito por gopaldave y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *