📅  最后修改于: 2020-10-31 02:03:54             🧑  作者: Mango
C#continue语句用于继续循环。它继续程序的当前流程,并在指定条件下跳过其余代码。如果是内部循环,则仅继续内部循环。
句法:
jump-statement;
continue;
using System;
public class ContinueExample
{
public static void Main(string[] args)
{
for(int i=1;i<=10;i++){
if(i==5){
continue;
}
Console.WriteLine(i);
}
}
}
输出:
1
2
3
4
6
7
8
9
10
仅当您在内部循环中使用continue语句时,C#Continue语句才会继续内部循环。
using System;
public class ContinueExample
{
public static void Main(string[] args)
{
for(int i=1;i<=3;i++){
for(int j=1;j<=3;j++){
if(i==2&&j==2){
continue;
}
Console.WriteLine(i+" "+j);
}
}
}
}
输出:
1 1
1 2
1 3
2 1
2 3
3 1
3 2
3 3