布尔逻辑练习集

时间:2016-12-24 05:11:29

标签: ruby

我遇到了以下问题:

  

将每个变量设置为true或false,具体取决于您希望表达式返回的值为true和false。

代码如下所示:

# test_1 = 77 != 77
test_1 = is/true 77 != 77

# test_2 = -4 <= -4
test_2 = is/true -4 <= -4

# test_3 = true -44 < -33
test_3 = is/true -44 <-33

# test_4 = false100 == 1000
test_4 = is/true 100 <= 1000

我一直收到此语法错误:

unexpected integer expecting $end

我是Ruby的新手。非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

你真正需要的是

test_1 = 77 != 77 # false
test_2 = -4 <= -4 # true 
test_3 = -44 <-33 # true
test_4 = 100 <= 1000 # true

&#34;是/ true&#34;在= sing给你错误后,只需删除它,它应该工作得很好