​哪里错了?

来源:4-7 C#循环结构之continue

Dream逐梦4304642

2016-11-01 15:57

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


写回答 关注

4回答

  • 慕容5048221
    2017-08-19 16:16:11

    if下如果不打大括号是只默认if下第一行的代码,所以你确定你的continue和console.wirte没有在同一行?


  • 慕粉1602476127
    2017-02-05 14:11:13

    我分开写了,加了个else

  • 小小1七爷
    2016-11-08 23:01:59

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

                }

            }

        }

    }

    我的都可以

  • 港文宇4267567
    2016-11-01 16:33:57

    应该没错,浏览器不行,你VS打进去试试就知道,这个网站和浏览器提交的问题

C#开发轻松入门

本门课程是C#语言的入门教程,将带你轻松入门.NET开发

254118 学习 · 1459 问题

查看课程

相似问题