我在這裏做錯了什麼?我試圖獲得銷售稅,並最終將其用於數學計算?Ruby類獲得銷售稅
class Item
def initialize(type)
@type = type
def tax_calc(type)
if type.include?("book")
sales_tax = 0
else
sales_tax = 2
end
end
end
puts "what is type"
type2 = gets
Item.new(type2)
puts sales_tax
你爲什麼不告訴我們它對你的行爲如何,以及與你想要做什麼相比這是怎麼回事? –