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.
return x%2 != 0; // Return true if x is odd. => ok return x>0 == 1; // Return true if x > 0 => this won't work
2行目が機能しない理由を誰か教えてもらえますか? ">", "=", "<"... 演算子を使用できないのはなぜですか?
">"
"="
"<"