登录
首页 » c,c++ » 黑白棋游戏简易版

黑白棋游戏简易版

于 2023-08-04 发布 文件大小:5.64 kB
0 58
下载积分: 2 下载次数: 1

代码说明:

棋盘设计为8×8格,初始状态在棋盘中央交叉排放黑白棋子各两枚,为统计棋子个数,有一个棋子计一分,白棋先走。每个棋手下棋时,摆子的位置必须是以自己的棋子能包围住对方一个或多个棋子,被包围的对方棋子将变成自己的棋子。包围的方向可以是上下左右以及左右斜线共8个方向,只要能连成一条线即可。当轮到一个棋手摆子,而他没有可以包围对方棋子的位置时。他必须停步让对方走棋,直到他可以走为止。当棋盘上有一方的棋子为0或下满64格,游戏结束时棋子少者输。 我们的程序从总体上说分为三个块,希望通过四个模块来解决,分别为: (1)棋盘的生成(棋盘可以用位图实现,也可用制表符号来生成,共8x8格); (2)记录双方对弈时间的计时器与记录双方子数的计数器; (3)选择人机对战和人人对战的函数及控制对战难度的主函数。    

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • GIS二次开发
    本系统运用英国CRTN88噪声预测模型,结合国内实际研究情况,对研究范围内监测点的交通噪声值进行实时动态预测,再运用GIS分析的插值思想,得到整个分析区域的任意时刻的噪音状况。
    2022-01-26 07:49:01下载
    积分:1
  • 线程管理示例代码
    线程管理示例代码
    2015-01-14下载
    积分:1
  • Csharp1
    C#的两本好书!C#入门经典和C#高级编程,搞定这两本书,C#就算熟悉了!(the two books! Introduction to C# and C# classic senior programming, to get these books, even familiar with C#!)
    2020-06-26 05:20:01下载
    积分:1
  • C# 制作系统服务 实例源码下载
    附件中有详细的安装使用文档,大概步骤如下:1.新建Windows项目,选择"Windows服务"类型的工程。2.生成的Program.cs文件中,定义了服务启动的Main函数。 代码 namespace WindowsService1{    static class Program    {        ///         /// 应用程序的主入口点。        ///         static void Main()        {            ServiceBase[] ServicesToRun;            ServicesToRun = new ServiceBase[]             {                 new Service1()             };            ServiceBase.Run(ServicesToRun);        }    }}  3.在新建的工程中,点击Service1.cs文件,切换到代码视图,生成的代码继承于ServiceBase基类,并重载了OnStart和OnStop方法。我在这个文件中进行了一些简单的操作,就是在服务开始的时候,定义一个定时器,然后每隔1秒钟,向文件中写入当前时间。 代码 namespace WindowsService1{    public partial class Service1 : ServiceBase    {        Timer timer;        public Service1()        {            InitializeComponent();        }        protected override void OnStart(string[] args)        {            timer = new Timer(1000);            timer.Elapsed  = new ElapsedEventHandler(timer_Elapsed);            timer.Start();        }        protected override void OnStop()        {            timer.Stop();            timer.Dispose();        }        void timer_Elapsed(object sender, ElapsedEventArgs e)        {            string filePath = AppDomain.CurrentDomain.BaseDirectory   "test.txt";            StreamWriter sw = null;            if (!File.Exists(filePath))            {                sw = File.CreateText(filePath);            }            else            {                sw = File.AppendText(filePath);            }            sw.Write("访问时间:" DateTime.Now.ToString() Environment.NewLine);            sw.Close();        }    }}4.向工程中添加一个安装程序类。 4.在新添加的安装程序类中,设定服务的名称,启动方式,账号名和密码等信息。 代码 namespace WindowsService1{    partial class Installer1    {        ///         /// 必需的设计器变量。        ///         private System.ComponentModel.IContainer components = null;        private System.ServiceProcess.ServiceProcessInstaller spInstaller;        private System.ServiceProcess.ServiceInstaller sInstaller;        ///          /// 清理所有正在使用的资源。        ///         /// 如果应释放托管资源,为 true;否则为 false。        protected override void Dispose(bool disposing)        {            if (disposing && (components != null))            {                components.Dispose();            }            base.Dispose(disposing);        }        #region 组件设计器生成的代码        ///         /// 设计器支持所需的方法 - 不要        /// 使用代码编辑器修改此方法的内容。        ///         private void InitializeComponent()        {            components = new System.ComponentModel.Container();            // 创建ServiceProcessInstaller对象和ServiceInstaller对象            this.spInstaller =new System.ServiceProcess.ServiceProcessInstaller();            this.sInstaller = new System.ServiceProcess.ServiceInstaller();            // 设定ServiceProcessInstaller对象的帐号、用户名和密码等信息            this.spInstaller.Account = System.ServiceProcess.ServiceAccount.LocalSystem;            this.spInstaller.Password = null;            this.spInstaller.Username = null;            // 设定服务的名称            this.sInstaller.ServiceName = "WindowsService1";            //设定服务启动的方式            this.sInstaller.StartType = System.ServiceProcess.ServiceStartMode.Automatic;            this.Installers.AddRange(new System.Configuration.Install.Installer[] {            this.spInstaller,this.sInstaller});        }        #endregion    }}5.生成工程,在bin目录下会生成exe文件。如果直接运行exe文件的话,是不能执行的,需要使用安装Windows服务用到一个名为InstallUtil.exe的命令行工具,打开命令行工具,转到InstallUtil.exe的目录下,我安装的是VS 2010,对应的目录为:C:WindowsMicrosoft.NETFrameworkv4.0.30319InstallUtil.exe,然后执行InstallUtil.exe 待执行的exe文件的目录,如:InstallUtil.exe F:MyProjectWindowsService1WindowsService1inDebugWindowsService1.exe。执行成功后,会在Windows的服务中,出现了刚刚添加的服务的名称。 6.启动该服务,这时打开binDebug文件夹,发现已经生成了一个test.txt的文件,里面记录了时间。这说明服务已经正式开始执行。7.停止服务的操作也和简单,打开命令行工具,转到C:WindowsMicrosoft.NETFrameworkv4.0.30319目录,然后执行InstallUtil.exe - u F:MyProjectWindowsService1WindowsService1inDebugWindowsService1.exe命令就可以了。
    2015-04-21下载
    积分:1
  • menu
    C#版折叠菜单示例源代码,点击“文件”菜单,当鼠标滑到最底部菜单的时候,可以展开更多的菜单内容,虽然是小技巧,我觉得挺实用的(C# version of the sample source code folding menu, click on the " File" menu, slide the bottom of the menu when the mouse when the contents of the menu can be expanded more, although tips, I feel very useful)
    2013-07-09 15:01:27下载
    积分:1
  • STM32简易示波器程序
    这个例程实现了最基本的示波器功能。支持双通道同时采样,最大采样频率1.25M (超频)。支持显示幅度调节、 采样频率调节、波形垂直位置调节。 这是一个相对复杂的例程,综合了STM32的ADC、DMA、DAC、TIM硬件功能。 本例程支持5420、4001和61509驱动芯片。TFT驱动程序会自动检测LCD驱芯片的型号。
    2022-06-20 12:35:31下载
    积分:1
  • C# 获取组合查询中两个结果集的交集
    Visual C# 获取组合查询中两个结果集的交集,获取学生表和成绩表中学生信息的交集。
    2022-03-21 14:37:37下载
    积分:1
  • 对于学习很有帮助,我个人也很喜欢。大家有什么问题的也可以交流反馈一下。...
    对于学习很有帮助,我个人也很喜欢。大家有什么问题的也可以交流反馈一下。-Very useful for learning, I personally liked. That there is no problem you can exchange feedback.
    2022-03-19 05:40:03下载
    积分:1
  • sina授权登录
    sina授权登录
    2014-03-31下载
    积分:1
  • 猜数小游戏WCF网络编程技术(含服务端以及客户端)
    猜数小游戏WCF网络编程技术(含服务端以及客户端)
    2020-06-26下载
    积分:1
  • 696518资源总数
  • 105562会员总数
  • 1今日下载