找传奇、传世资源到传世资源站!

C# 两人猜谜(入门级小游戏)

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

from clipboard//调用GameShow方法
            GameShow();

            #region 输入玩家姓名

            Console.ForegroundColor = ConsoleColor.White;//定义下面文字在控制台显示的颜色
            Console.WriteLine("请输入玩家A的姓名:");//从控制台获取玩家A的姓名
            PlayerName[0] = Console.ReadLine();
            while (PlayerName[0].Trim() == "")//trim(去掉两头的空格,但不影响中间的空格,防止所输入的姓名为空和全部都是空格的情况
            {
                Console.WriteLine("玩家A的姓名不能为空,请重新输入玩家A的姓名!!!");
                PlayerName[0] = Console.ReadLine();
            }
            Console.WriteLine("请输入玩家B的姓名:");//从控制台获取玩家B的姓名
            PlayerName[1] = Console.ReadLine();
            while (PlayerName[1].Trim() == "" || PlayerName[1] == PlayerName[0])//对玩家B的姓名进行判断,如果不正确则要求重新输入
            {
                if (PlayerName[1].Trim() == "")
                {
                    Console.WriteLine("玩家B的姓名不能为空,请重新输入玩家B的姓名!!1");
                    PlayerName[1] = Console.ReadLine();
                }
                else
                {
                    Console.WriteLine("玩家B的姓名不能和玩家A的姓名相同,请重新输入玩家B姓名!!!!");
                    PlayerName[1] = Console.ReadLine();
                }
            }

            #endregion

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复