当前位置:   article > 正文

飞行棋游戏代码(C#)_飞行棋源代码

飞行棋源代码

220224飞行器v1.0

using System;

namespace AeroplaneChess
{
   
    class Program
    {
   
        //地图
        static int[] Maps = new int[100];
        //玩家A B坐标
        static int[] playerPos = new int[2];
        //玩家姓名
        static string[] playerNames = new string[2];
        //玩家回合标记
        static bool[] Flags = new bool[2];
        /// <summary>
        /// 主函数
        /// </summary>
        /// <param name="args"></param>
        static void Main(string[] args)
        {
   
            //游戏封面
            GameShow();
            #region 输入玩家姓名
            Console.WriteLine("请输入玩家A姓名");
            playerNames[0] = Console.ReadLine();
            while (playerNames[0]=="")
            {
   
                Console.WriteLine("玩家A姓名不能为空,请重新输入");
                playerNames[0] = Console.ReadLine();
            }
            Console.WriteLine("请输入玩家B姓名");
            playerNames[1] = Console.ReadLine();
            while (playerNames[1] == "" || playerNames[1] == playerNames[0])
            {
   
                if(playerNames[1] == "")
                {
   
                    Console.WriteLine("玩家B姓名不能为空,请重新输入");
                    playerNames[1] = Console.ReadLine();
                }
                if (playerNames[1] == playerNames[0])
                {
   
                    Console.WriteLine("玩家B姓名不能与玩家A相同,请重新输入");
                    playerNames[1] = Console.ReadLine();
                }
                    
            }
            #endregion
            Console.Clear();//清屏
            GameShow();
            Console.WriteLine("{0}的飞机用A表示,{1}的士兵用B表示", playerNames[0], playerNames[1]);
            //初始化地图
            InitMap();
            //显示棋盘
            DrawMap();
            //胜利界面

            //游戏逻辑
            while (playerPos[0] < 99 && playerPos[1] < 99)
            {
   
                if (Flags[0] == false)
                {
   
                    playGame(0);
                }
                else
                {
   
                    Flags[0] = false;
                }
                if(playerPos[0]>=99)
                {
   
                    Console.WriteLine("玩家{0}无耻的赢了玩家{1}"<
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/546618
推荐阅读
相关标签
  

闽ICP备14008679号