📜  Ruby 整数 to_i函数与示例

📅  最后修改于: 2022-05-13 01:55:21.069000             🧑  作者: Mango

Ruby 整数 to_i函数与示例

Ruby 中的to_i函数将数字的值转换为 int。如果数字本身是一个 int,它只返回 self。

示例 #1:

# Ruby program for to_i function 
   
# Initializing the number
num1 = 51
num2 = 10.78
num3 = 1690.89
num4 = 183
    
# Prints the number as int
puts num1.to_i
puts num2.to_i
puts num3.to_i
puts num4.to_i

输出

51
10
1690
183

示例 #2:

# Ruby program for to_i function 
   
# Initializing the number
num1 = 312
num2 = 98.09
num3 = 190.23
num4 = 1312
   
# Prints the number as int
puts num1.to_i
puts num2.to_i
puts num3.to_i
puts num4.to_i

输出

312
98
190
1312