■整数値に変換する

■書式

値.to_i

■説明

整数値(Integer)に変換するにはto_iを使います。

■サンプル

#!/usr/bin/ruby
a = 12.34
b = a.to_i
print "#{b}\n"