The kontynuować wypowiedź w języku C służy do przeniesienia kontroli programu na początek pętli. Instrukcjacontinue pomija niektóre wiersze kodu wewnątrz pętli i kontynuuje następną iterację. Używa się go głównie do określenia warunku, dzięki czemu możemy pominąć jakiś kod dla konkretnego warunku.
Składnia:
//loop statements continue; //some lines of the code which is to be skipped
Kontynuuj przykład instrukcji 1
#include void main () { int i = 0; while(i!=10) { printf('%d', i); continue; i++; } }
Wyjście
infinite loop
Kontynuuj przykład instrukcji 2
#include int main(){ int i=1;//initializing a local variable //starting a loop from 1 to 10 for(i=1;i<=10;i++){ if(i="=5){//if" value of i is equal to 5, it will continue the loop continue; } printf('%d ',i); end for return 0; < pre> <p> <strong>Output</strong> </p> <pre> 1 2 3 4 6 7 8 9 10 </pre> <p>As you can see, 5 is not printed on the console because loop is continued at i==5.</p> <h2>C continue statement with inner loop</h2> <p>In such case, C continue statement continues only inner loop, but not outer loop.</p> <pre> #include int main(){ int i=1,j=1;//initializing a local variable for(i=1;i<=3;i++){ for(j="1;j<=3;j++){" if(i="=2" && j="=2){" continue; will continue loop of only } printf('%d %d ',i,j); end for return 0; < pre> <p> <strong>Output</strong> </p> <pre> 1 1 1 2 1 3 2 1 2 3 3 1 3 2 3 3 </pre> <p>As you can see, 2 2 is not printed on the console because inner loop is continued at i==2 and j==2.</p> <hr></=3;i++){></pre></=10;i++){>
Jak widać, 5 nie jest wypisywane na konsoli, ponieważ pętla jest kontynuowana w i==5.
Instrukcja C kontynuuj z pętlą wewnętrzną
W takim przypadku instrukcja Ccontinue kontynuuje tylko pętlę wewnętrzną, ale nie pętlę zewnętrzną.
#include int main(){ int i=1,j=1;//initializing a local variable for(i=1;i<=3;i++){ for(j="1;j<=3;j++){" if(i="=2" && j="=2){" continue; will continue loop of only } printf(\'%d %d \',i,j); end for return 0; < pre> <p> <strong>Output</strong> </p> <pre> 1 1 1 2 1 3 2 1 2 3 3 1 3 2 3 3 </pre> <p>As you can see, 2 2 is not printed on the console because inner loop is continued at i==2 and j==2.</p> <hr></=3;i++){>
Jak widać, 2 2 nie jest wypisywane na konsoli, ponieważ pętla wewnętrzna jest kontynuowana w i==2 i j==2.
=3;i++){>=10;i++){>