c#_循环的终止break语句

循环的中断 break(终止当前循环)

使用break立即跳出循环

练习

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace _27
{
class
{
static void Main(string[] args)
{

int index = 1;
while (true)
{
Console.WriteLine(index);
if (index==9)
{
break;//跳出最近的循环体结构,执行下一行代码
}
index++;
}


//接受用户输入,并显示到屏幕,当用户输入0时退出循环体
while (true)
{
string str = Console.ReadLine();
Console.WriteLine(str);
if (str== "0")
{
break;
}
}
//Console.ReadKey();
}
}
}