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.
与えられた配列 {1,4,5,6,7,4,7,8}
4 と 7 の間に値があるかどうかを確認する方法は?
given.Any(n => n > 4 && n < 7);
>およびを自由に変更して<、独占権の要件に合わせてください。
>
<
array.Any(i=>i>=4 && i<=7);