C#循环语句总结

前言

正所谓磨刀不误砍柴工,C#上位机软件开发能力的提升离不开对C#语法的精通,本文接着讲解C#语法知识中的循环语句,在C#程序开发中我们经常会用到各种循环语句,常见的有for循环、while循环,本文就是对C#中用到的各种循环语句进行了总结,内容如下:

1、for循环

1.1 每次加1递增循环

每次增加1,循环10次

复制代码
    for(int i=0;i<10;i++)
    {
        Console.WriteLine(i);
    }

输出:

csharp 复制代码
0
1
2
3
4
5
6
7
8
9

1.2 设置指定步长的递增循环

每次增加2,可设置步长,循环5次

csharp 复制代码
 int stepAdd = 2;
        for (int i = 0; i < 10; i=i+ stepAdd)
        {
            Console.WriteLine(i);
        }

输出:

csharp 复制代码
0
2
4
6
8

1.3 递减循环

每次减2,可设置步长,循环5次

复制代码
int stepDec = 2;
    for (int i = 10; i >0; i = i - stepDec)
    {
        Console.WriteLine(i);
    }

输出:

csharp 复制代码
10
8
6
4
2

2、while循环

2.1 搭配break语句跳出循环

break语句执行时,直接跳出while循环。

csharp 复制代码
  int count = 0;
        while (true )
        {
            count = count + 1;
            Console.WriteLine(count);
            if (count >=10)
            {
                break;//使用break跳出大的循环语句
            }
        }

输出:

csharp 复制代码
1
2
3
4
5
6
7
8
9
10

2.2 搭配continue语句不执行当前循环后面语句

continue执行时,continue语句后面的代码都不执行,然后会重新跳到 while (true)这里。

从输出结果可以看出count等于5的时候没有输出

复制代码
count = 0;
    while (true)
    {
        count = count + 1;
        if (count == 5)
        {
            continue;//使用continue不执行本次循环后面的语句
        }

        if (count >= 10)
        {
            break;//使用break跳出大的循环语句
        }
        Console.WriteLine(count);
    }

输出:

csharp 复制代码
1
2
3
4
6
7
8
9

3、do while循环

do while循环,先执行语句,然后判断是否继续执行循环

下面的代码中count < 10就执行循环,否则结束循环

csharp 复制代码
   count = 0;
        do
        {
            count = count + 1;
            Console.WriteLine(count);
        }
        while (count < 10);

输出:

csharp 复制代码
1
2
3
4
5
6
7
8
9
10

4、foreach循环

foreach循环,一般用于对集合对象的访问

csharp 复制代码
   List<int> ListTest = new List<int>();
        ListTest.Add(1);
        ListTest.Add(2);
        ListTest.Add(3);
        ListTest.Add(4);
        ListTest.Add(5);
        foreach (int item in ListTest)
        {
            Console.WriteLine(item);
        }

输出:

csharp 复制代码
1
2
3
4
5
相关推荐
夏天的味道٥2 小时前
@JsonIgnore对Date类型不生效
开发语言·python
小白学大数据2 小时前
Python爬虫伪装策略:如何模拟浏览器正常访问JSP站点
java·开发语言·爬虫·python
SEO_juper3 小时前
别再纠结LLMs.txt了!它背后的真相与最佳使用场景,一文讲透。
开发语言·ai·php·数字营销
g***B7383 小时前
JavaScript在Node.js中的模块系统
开发语言·javascript·node.js
烤麻辣烫4 小时前
黑马程序员大事件后端概览(表现效果升级版)
java·开发语言·学习·spring·intellij-idea
思密吗喽4 小时前
宠物商城系统
java·开发语言·vue·毕业设计·springboot·课程设计·宠物
csbysj20204 小时前
Lua 函数
开发语言
头发还在的女程序员4 小时前
三天搞定招聘系统!附完整源码
开发语言·python
温轻舟4 小时前
Python自动办公工具06-设置Word文档中表格的格式
开发语言·python·word·自动化工具·温轻舟
p***c9494 小时前
PHP在电商中的电商系统
开发语言·php