Ruby 1.8.7 リファレンスマニュアル > ライブラリ一覧 > rationalライブラリ > Rationalクラス > /
self / other -> Rational | Float
[permalink][rdoc]商を計算します。
other に Float を指定した場合は、計算結果を Float で返しま す。
例:
Rational(3, 4) / 2 # => Rational(3, 8) Rational(3, 4) / Rational(2, 1) # => Rational(3, 8) Rational(3, 4) / 2.0 # => 0.375 Rational(3, 4) / 0 # => ZeroDivisionError