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