尝试使用新的 LearnStreet 在线教程学习 Ruby。
你现在能写一个方法add_interest吗!在帐户对象上,它采用一个参数百分比并将该百分比的余额添加到帐户中?
提示 2 调用参数为 10 的方法。
提示 1 百分比计算 - (@balance * percent)/100
我的尝试:
def account.add_interest!(percentage)
(@balance * percentage)/100
end
account.add_interest!(10)
我错过了什么?