Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

2014-09-08から1日間の記事一覧

Ruby | Numeric | fdiv

概要 Numeric#fdiv(other) -> Float 詳細 self を other で割った整数の商 q を Float で返却。 サンプルコード p 4.fdiv(2) p 3.fdiv(2) p 2.fdiv(3) p 2.fdiv(4) 出力 $ ruby numeric_fdiv.rb 2.0 1.5 0.6666666666666666 0.5 参照 http://docs.ruby-lang.…