2018-11-22 游戏平台(一)

代码

        Console.WriteLine("欢迎进入迷你游戏平台");
        Console.WriteLine("请选择您喜爱的游戏");
        Console.WriteLine("*****************************************");
        Console.WriteLine(@"
                          1.斗地主
                          2.斗牛
                          3.泡泡龙
                          4.连连看
                           ");
        Console.WriteLine("*****************************************");
        Console.Write("请选择:");
        int num = Convert.ToInt32(Console .ReadLine ());
        try
        {
            switch (num)
            {
                case 1: Console.WriteLine("您已进入斗地主房间");
                    break;
                case 2:
                    Console.WriteLine("您已进入斗牛房间");
                    break;
                case 3:
                    Console.WriteLine("您已进入泡泡龙房间");
                    break;
                case 4:
                    Console.WriteLine("您已进入连连看房间");
                    break;
            }
        }
        catch
        {
            Console.WriteLine("输入有误,请重新输入!");
        }
        Console.ReadKey();

效果

2018-11-22 游戏平台(一)_第1张图片
image.png

你可能感兴趣的:(2018-11-22 游戏平台(一))