Ruby编程之函数计算
【摘要】 Ruby函数编程与类编程
taxrate = 0.175
print "Enter price (ex tax): "
s = gets
subtotal = s.to_f
if (subtotal < 0.0) then
subtotal = 0.0
end
tax = subtotal * taxrate
puts "Tax on $#{subtotal} is $#{tax}, so grand total is $#{subtotal+tax}"
Enter price (ex tax):123
Tax on $123.0 is $21.525, so grand total is $144.525
class Dog
def set_name(aName)
@myname = aName
end
def get_name()
return @myname
end
end
mydog = Dog.new
mydog.set_name( 'Fido' )
puts(mydog.get_name)
Fido
puts "Hello, Ruby!";
print( 'Enter your name: ' )
name = gets()
puts( "Hello #{name}" )
Hello, Ruby!
Enter your name:Joshhua chan
Hello Joshhua chan
taxrate = 0.175
print "Enter price (ex tax): "
s = gets
subtotal = s.to_f
tax = subtotal * taxrate
puts "Tax on $#{subtotal} is $#{tax}, so grand total is $#{subtotal+tax}"
Enter price (ex tax):1235
Tax on $1235.0 is $216.125, so grand total is $1451.125
开发环境:Rubymine
The book of Ruby----A hands-on guide for the Adventurous---[美]Huw Collingbourne---no starch press
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区),文章链接,文章作者等基本信息,否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件至:cloudbbs@huaweicloud.com进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容。
- 点赞
- 收藏
- 关注作者
评论(0)