Movatterモバイル変換


[0]ホーム

URL:


Menu
×
See More 
Sign In
+1 Get Certified Upgrade Teachers Spaces Bootcamps Get Certified Upgrade Teachers Spaces Bootcamps
   ❮   
     ❯   

C#Break and Continue


C# Break

You have already seen thebreak statement used in an earlier chapter of this tutorial. It was used to "jump out" of aswitch statement.

Thebreak statement can also be used to jump out of aloop.

This example jumps out of the loop wheni is equal to4:

Example

for (int i = 0; i < 10; i++) {  if (i == 4)   {    break;  }  Console.WriteLine(i);}

Try it Yourself »


C# Continue

Thecontinue statement breaks one iteration (in the loop), if a specified condition occurs, and continues with the next iteration in the loop.

This example skips the value of4:

Example

for (int i = 0; i < 10; i++) {  if (i == 4)   {    continue;  }  Console.WriteLine(i);}

Try it Yourself »


Break and Continue in While Loop

You can also usebreak andcontinue in while loops:

Break Example

int i = 0;while (i < 10) {  Console.WriteLine(i);  i++;  if (i == 4)   {    break;  }}

Try it Yourself »

Continue Example

int i = 0;while (i < 10) {  if (i == 4)   {    i++;    continue;  }  Console.WriteLine(i);  i++;}

Try it Yourself »





×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning.
Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness
of all content. While using W3Schools, you agree to have read and accepted ourterms of use,cookies andprivacy policy.

Copyright 1999-2026 by Refsnes Data. All Rights Reserved.W3Schools is Powered by W3.CSS.


[8]ページ先頭

©2009-2026 Movatter.jp