十九、循环控制之无限循环-成都创新互联网站建设

关于创新互联

多方位宣传企业产品与服务 突出企业形象

公司简介 公司的服务 荣誉资质 新闻动态 联系我们

十九、循环控制之无限循环

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace _19.流程控制之无限循环
{
    class Program
    {
        static void Main(string[] args)
        {
            // 无限循环也称死循环,永不终止的循环。
            // 使用do...while语句书写无限循环
            {
                do
                {
                } while (true);
            }
            
            // 使用while语句书写无限循环
            {
                while (true)
                {
                }
            }
            
            // 使用for语句书写无限循环
            {
                for (; ; )
                {
                }
            }
        }
    }
}

新闻标题:十九、循环控制之无限循环
网页网址:http://kswsj.cn/article/jssdod.html

其他资讯