Entries from 2014-09-21 to 1 day

Rubyで消費税の計算やってみたヘ(^o^)ノ

こんなメソッドを作ってみます require 'bigdecimal' Order = Struct.new(:sub_total) def total(order, tax) (BigDecimal(order.sub_total) * BigDecimal(tax.to_s)).ceil end order = Order.new(100) total(order, 1.08) # => 108 でも、これじゃ毎回消費…