Skip to content

Instantly share code, notes, and snippets.

@akcrono
akcrono / cash_register2.rb
Created August 13, 2014 15:16
chash register program for Launch Academy
require 'bigdecimal'
require 'bigdecimal/util'
values = []
puts 'What is the sale price?'
print '>'
input = gets.chomp
while input != 'done'
@akcrono
akcrono / gist:68aa49e12d88e073acb0
Created August 12, 2014 17:32
register for launch academy day 2
require 'bigdecimal'
require 'bigdecimal/util'
puts 'What is the amount due?'
total = gets.chomp.to_f
puts 'What is the amount tendered?'
cash = gets.chomp.to_f
if total > cash
puts 'WARNING: Customer still owes $0.50! Exiting...'