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); }
if下如果不打大括号是只默认if下第一行的代码,所以你确定你的continue和console.wirte没有在同一行?
我分开写了,加了个else
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);
}
}
}
}
我的都可以
应该没错,浏览器不行,你VS打进去试试就知道,这个网站和浏览器提交的问题
C#开发轻松入门
254118 学习 · 1459 问题
相似问题