欣love露琪亚
2016-10-30 09:43
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);
}
}
}
}
C#开发轻松入门
254118 学习 · 1459 问题
相似问题