Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の表現はどういう意味ですか?誰か教えてもらえますか?
!((number > 6) || (number <= 2))
2から6の間であるかどうかを確認しますnumber。具体的には、次のいずれかであるかどうかを確認しますnumber。
number
3 4 5 6
それを書くためのより良い方法は次のようになります:(number > 2 && number <= 6)
(number > 2 && number <= 6)