为了使这个数学运作,我需要写什么?
10 = t
20 = e
30 = d
if t + e = 30
puts "yes i am good at math"
elsif t + d = 77
puts "oh no"
else
puts "i love myself anyway"
end
非常感谢。
答案 0 :(得分:2)
t = 10
e = 20
d = 30
if (t + e) == 30
puts "yes i am good at math"
elsif (t + d) == 77
puts "oh no"
else
puts "i love myself anyway"
答案 1 :(得分:1)
而不是=
在==
或if
条件中写elsif
。 =
分配值,==
检查值是否相等。