csharp 使用while语句的示例。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 使用while语句的示例。相关的知识,希望对你有一定的参考价值。

int num = 1;

while (num <= 10)
{
  Console.WriteLine("The current value of num is: " + num);
  num++;
}

//	The current value of num is: 1
//	The current value of num is: 2
//	The current value of num is: 3
//	The current value of num is: 4
//	The current value of num is: 5
//	The current value of num is: 6
//	The current value of num is: 7
//	The current value of num is: 8
//	The current value of num is: 9
//	The current value of num is: 10

以上是关于csharp 使用while语句的示例。的主要内容,如果未能解决你的问题,请参考以下文章

csharp 基本do while循环的示例。

csharp 基本do while循环的示例。

csharp 使用嵌套if语句的示例。

csharp 使用嵌套if语句的示例。

csharp 如何使用switch语句的示例。

csharp 如何使用switch语句的示例。