Created
August 12, 2014 17:12
-
-
Save foglabs/ecd8e6e34f6165d8d289 to your computer and use it in GitHub Desktop.
Cash Register I
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
price = 0 | |
cash = 0 | |
time = Time.now | |
puts "Please enter the amount due: " | |
price = gets.chomp.to_f | |
puts "Please enter the cash tendered: " | |
cash = gets.chomp.to_f | |
if price > cash | |
puts "\n\nThat's not gonna cut it! You're short by $#{'%.2f' %(price-cash)}." | |
else | |
puts "\n\nYour change is $#{'%.2f' %(cash-price)}\n\n===========\nThanks yo!\n===========\n#{time.hour}:#{time.min} #{time.month}-#{time.day}-#{time.year}" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment