个性化阅读
专注于IT技术分析

C# do-while循环

本文概述

C#do-while循环用于多次迭代程序的一部分。如果迭代次数不固定,并且必须至少执行一次循环,则建议使用do-while循环。

C#的do-while循环至少执行一次,因为在循环体之后检查了条件。

句法:

do{
//code to be executed
}while(condition);

C#do-while循环示例

让我们看一个简单的C#do-while循环示例来打印表1。

using System;
public class DoWhileExample
    {
      public static void Main(string[] args)
      {
          int i = 1;
          
          do{
              Console.WriteLine(i);
              i++;
          } while (i <= 10) ;
  
     }
   }

输出:

1
2
3
4
5
6
7
8
9
10

C#嵌套do-while循环

在C#中,如果在另一个do-while循环中使用do-while循环,则称为嵌套do-while循环。嵌套的do-while循环针对每个外部do-while循环完全执行。

让我们看一个简单的C#嵌套do-while循环示例。

using System;
public class DoWhileExample
    {
      public static void Main(string[] args)
      {
          int i=1;  
          
          do{
              int j = 1;
              
              do{
                  Console.WriteLine(i+" "+j);
                  j++;
              } while (j <= 3) ;
              i++;
          } while (i <= 3) ;  
     }
   }

输出:

1 1
1 2
1 3
2 1
2 2 
2 3
3 1
3 2
3 3

C#不定式do-while循环

在C#中,如果在do-while循环中传递true,则它将是不定式的do-while循环。

句法:

do{
//code to be executed
}while(true);

C#不定式do-while循环示例

using System;
public class WhileExample
    {
      public static void Main(string[] args)
      {
          
          do{
              Console.WriteLine("Infinitive do-while Loop");
          } while(true); 
      }
    }

输出:

Infinitive do-while Loop 
Infinitive do-while Loop
Infinitive do-while Loop
Infinitive do-while Loop
Infinitive do-while Loop
ctrl+c
赞(0)
未经允许不得转载:srcmini » C# do-while循环

评论 抢沙发

评论前必须登录!