温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

十八、流程控制之循环中断

发布时间:2020-07-26 20:10:29 来源:网络 阅读:465 作者:vik_xiao 栏目:编程语言
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace _18.流程控制之循环中断
{
    class Program
    {
        static void Main(string[] args)
        {
            /**
             * 循环的中断方式有四种:
             * (1) break语句立即终止当前所在的循环。
             * (2) continue语句立即终止本次循环,继续执行下一次循环。
             * (3) goto语句可以跳出循环,到已标记好的位置上。
             * (4) return语句跳出循环及其包含的函数。
             * 
             */
             
            // 使用break语句中断循环
            {
                int i = 1;
                
                while (i <= 10)
                {
                    if (i == 6)
                        break;
                    Console.WriteLine("{0}", i++);
                }
            }
            
            // 使用continue语句中断循环
            {
                int i;
                
                for (i = 1; i <= 10; i++)
                {
                    if ((i % 2) == 0)
                        continue;
                    Console.WriteLine(i);
                }
            }
            
            // 使用goto语句中断循环
            // 当使用goto语句跳出循环是合法的,但使用goto语句从外部进入循环是非法的。
            {
                int i = 1;
                
                while (i < 10)
                {
                    if (i == 6)
                        goto exitPoint;
                    Console.WriteLine("{0}", i++);
                }
                
                Console.WriteLine("This code will never be reached.");
                
            exitPoint:
                Console.WriteLine("This code is run when the loop is exited using goto.");
            }
            
            // 使用return语句中断循环
            {
                int i = 0;
                
                do
                {
                    if (i == 6)
                        return;
                    Console.WriteLine("{0}", i++);
                } while (i < 10);
            }
            
            Console.ReadKey();
        }
    }
}


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI