Skip to content

Instantly share code, notes, and snippets.

@ModestGoblin
Created June 30, 2015 05:18
Show Gist options
  • Save ModestGoblin/0473746e5f06aa10e1a1 to your computer and use it in GitHub Desktop.
Save ModestGoblin/0473746e5f06aa10e1a1 to your computer and use it in GitHub Desktop.
cars = 100
space_in_a_car = 4.0
drivers = 30
passengers = 90
cars_not_driven = cars - drivers
cars_driven = drivers
carpool_capacity = cars_driven * space_in_a_car
average_passenger_per_car = passengers / cars_driven
puts "There are #{cars} cars available."
puts "There are only #{drivers} drivers available."
puts "There will be #{cars_not_driven} empty cars today."
puts "We can transport #{carpool_capacity} people today."
puts "We have #{passengers} to carpool today."
puts "We need to put about #{average_passenger_per_car} in a car."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment