、、、、、
程序代码:
static void Main(string[] args) { bool myBool = false; while (myBool == false) { Console.WriteLine("请输入选项:"); int Num = Convert.ToInt32(Console.ReadLine()); switch (Num) { case 1: Console.WriteLine("なのと\n"); break; case 2: Console.WriteLine("イタチ\n"); break; case 3: Console.WriteLine("かかシ\n"); break; case 4: myBool = true; Console.WriteLine("Over\n"); break; } } }