26 lines
445 B
Ruby
26 lines
445 B
Ruby
people = 30
|
|
cars = 40
|
|
trucks = 15
|
|
|
|
if cars > people
|
|
puts "We should take the cars."
|
|
elsif cars < people
|
|
puts "We should not take the cars."
|
|
else
|
|
puts "We can't decided."
|
|
end
|
|
|
|
if trucks > cars
|
|
puts "That's too many trucks."
|
|
elsif trucks < cars
|
|
puts "Maybe we could take the trucks."
|
|
else
|
|
puts "We still can't decide."
|
|
end
|
|
|
|
if people > trucks
|
|
puts "Alright, let's just take the trucks."
|
|
else
|
|
puts "Fine, let's stay home then."
|
|
end
|