Ruby Float to_i()方法
Float#to_i()是一个float类方法,它返回浮动值的整数表示。
语法:float.to_i()
参数:浮动值作为参数
返回浮动值的整数表示法。
例子 #1 :
# Ruby code for to_i() method
# declaring float value
a = 0.756567
# declaring float value
b = 2797999.011
# converting to integer
puts "Integer a : #{a.to_i}\n\n"
# converting to integer
puts "Integer b : #{b.to_i}\n\n"
输出:
Integer a : 0
Integer b : 2797999
例子 #2 :
# Ruby code for to_i() method
# declaring float value
a = 0.767
# declaring float value
b = 2999.011
# converting to integer
puts "Integer a : #{a.to_i}\n\n"
# converting to integer
puts "Integer b : #{b.to_i}\n\n"
输出:
Integer a : 0
Integer b : 2999