I am in need of help on the ruby course “17 Billions of Booleans” I need help, the directions do not give enough information to help me with this particular area. Will someone help me work through the coding?
Nevermind to this topic. I fixed my problem. I seem to have had the coding wrong, simple mistake thank you.
how you fiix it?
i would like to know thank you
Post your code and I will compare both and tell you what is wrong. My problem was that I was using parenthesis, and that is not what you are supposed to do.
Would you be able to help me with my coding?
test_1 should be true
test_1 = true && true
test_2 = should be true
test_2 = true || true
test_3 = should be false
test_3 = !true
That’s the correct coding!
so this is saying that I need an equation after every = sign? and I am very confused on what it is saying? Any help?
#First exercise is over.
=begin# test_1 should be true
test_1 = 2**3 == 9 || true
# test_2 = should be true
test_2 = 3**2 == 9 || false
# test_3 = should be false
test_3 = 2**3 == 9 || false
[quote=“moffetth2019, post:15, topic:23059”]
test_1 = 2**3 == 9 || true
test_2 = should be true
test_2 = 3**2 == 9 || false
test_3 = should be false
test_3 = 2**3 == 9 || false
Your code has worked for me, thanks