问答详情
源自:4-7 C#循环结构之continue

我这段程序错在哪?


            for (int x = 1; x < 10; x++)
            {
                if(x==3||x==8)
                    continue;//请添加代码,过滤3和8
                Console.Write(x);

提问者:欣love露琪亚 2016-10-30 09:43

个回答

  • 孟德尔的怪豆
    2016-10-30 10:18:18

    using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                for (int x = 1; x < 10; x++)

                {

                    if (x == 3 || x == 8)

                        continue;//请添加代码,过滤3和8

                    Console.Write(x);

                }

            }

        }

    }