右边的代码循环输出 1-9 的整数,请使用 continue 关键字,使得 3 和 8 不会被打印。
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++) { //请添加代码,过滤3和8 Console.Write(x); } } } }