Ruby 整数 to_f 函数与实例
Ruby中的 to_f 函数将数字的值转换为 浮点数 如果它不适合于浮点数,那么它将返回无穷大。
语法 :number.to_f
参数 :该函数接收要转换为浮点数的整数。
返回值 : 该函数返回数字的浮动值。
例子 #1 :
# Ruby program for to_f function
# Initializing the number
num1 = 5
num2 = 10
num3 = 1678
num4 = 1897.90
# Prints the int as float
puts num1.to_f
puts num2.to_f
puts num3.to_f
puts num4.to_f
输出:
5.0
10.0
1678.0
1897.9
例子#2 。
# Ruby program for to_f function
# Initializing the number
num1 = 51
num2 = 10.78
num3 = 1690
num4 = 183
# Prints the int as float
puts num1.to_f
puts num2.to_f
puts num3.to_f
puts num4.to_f
输出:
51.0
10.78
1690.0
183.0