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.
使用方法と「または」またはあなたがそれを呼ぶもの
お気に入り:
if (n1 'or' n2 'or' n3 'or' n4 'or' n5 == 1){ }
Objective-Cの「または」の記号は「||」です。したがって、ステートメントは次のようになります。
if((n1==1) || (n2==1) || (n3==1) || (n4==1) || (n5 == 1)) { // do something }