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.
次の値で現在のループをやり直すにはどうすればよいですか。これにより、私の機能が
for(int i=0; i<=2; i++) { if(i==1) FUNCTION; print(i); }
出力は「02」になります。
for(int i=0; i<=2; i++) { if(i==1){ continue; } print(i); }
continueステートメントはこれに役立ちます。条件が満たされた場合、ループ本体をスキップし、次の反復のためにループ本体を続行します。
breakandcontinueステートメントの詳細については、この例を参照してください。
break
continue
for(int i=0; i<=2; i++){ if(i==1) { i=0; } else{ System.out.print(i); i++; } }