Commit f4c1a38c by Đường Sỹ Hoàng

Variables and name

parent 4dffbb49
Pipeline #94 canceled with stages
in 0 seconds
cars = 100
space_in_a_car = 4.0
drivers = 30
passengers = 30
cars_not_driven = cars - drivers
cars_not_driven = drivers
cars_driven = drivers
carpool_capacity = cars_driven * space_in_a_car
average_passengers_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_passengers_per_car} in each car."
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment