为了账号安全,请及时绑定邮箱和手机立即绑定

我这段程序错在哪?


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

正在回答

1 回答

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);

            }

        }

    }

}


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

我这段程序错在哪?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信