前一习题中你写了一些“if 语句 (if-statements)”,并且试图猜出它们是什么,以及实现的是什么功能。在你继续学习之前,我给你解释一下上一节的加分习题的答案。上一节的加分习题你做过了吧,有没有?
if
语句为程式码创建了一个所谓的“分支(branch)”,就跟 RPG游戏中的情节分支一样。if 语句告诉你的脚本:“如果这个布林表示式为真,就执行接下来的程式码,否则就跳过这一段。”把我的答案和你的答案比较一下,确认自己真正懂得程式码“区段(block)”的含义。这点对于你下一节的习题习很重要,因为你将会写很多的if 语句。
把这一段写下来,并让它运行起来:
people = 30
cars = 40
buses = 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 decide."
end
if buses > cars
puts "That's too many buses."
elsif buses < cars
puts "Maybe we could take the buses."
else
puts "We still can't decide."
end
if people > buses
puts "Alright, let's just take the buses."
else
puts "Fine, let's stay home then."
end
$ ruby ex30.rb
We should take the cars.
Maybe we could take the buses.
Alright, let's just take the buses.
$
elsif
和 else
的功能。cars
、people
和buses
的数量改掉,然后追溯每一个if语句。看看最后会印出什么来。cars > people and buses < cars
。 在每一行的上面写注解,说明这一行的功用。