Skip to content

Instantly share code, notes, and snippets.

@joellusky
Created July 23, 2014 20:24
Show Gist options
  • Save joellusky/6d62e3e802db82f24701 to your computer and use it in GitHub Desktop.
Save joellusky/6d62e3e802db82f24701 to your computer and use it in GitHub Desktop.
puts "Please enter your bill amount"
amount = gets.to_f
tip_percent = 0.20
tip = amount * tip_percent
total = amount + tip
puts total
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment