文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

C#实现数字华容道游戏

2024-04-02 19:55

关注

本文实例为大家分享了C#实现数字华容道游戏的具体代码,供大家参考,具体内容如下

代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;


namespace WindowsFormsApp6
{undefined
    public partial class Form1 : Form
    {undefined
        public Form1()
        {undefined
            InitializeComponent();
        }


        const int N = 4;
        Button[,] buttons = new Button[N, N];


        private void Form1_Load(object sender, EventArgs e)
        {undefined
            //产生所有按钮
            GenerateAllButtons();
        }


        private void button1_Click(object sender, EventArgs e)
        {undefined
            Shuffle();
        }


        //打乱顺序
        void Shuffle()
        {undefined
            //多次随机交换两个按钮
            Random rnd = new Random();
            for (int i=0;i<100;i++)
            {undefined
                int a = rnd.Next(N);
                int b = rnd.Next(N);
                int c = rnd.Next(N);
                int d = rnd.Next(N);
                Swap(buttons[a, b], buttons[c, d]);
            }
        }


        //生成所有按钮
        void GenerateAllButtons()
        {undefined
            int x0 = 100, y0 = 10, w = 45, d = 50;
            for(int r=0;r<N;r++)
                for(int c = 0; c < N; c++)
                {undefined
                    int num = r * N + c;
                    Button btn = new Button();
                    btn.Text = (num + 1).ToString();
                    btn.Top = y0 + r * d;
                    btn.Left = x0 + c * d;
                    btn.Width = w;
                    btn.Height = w;
                    btn.Visible = true;
                    btn.Tag = r * N + c;//这个数据用来表示它所在的行列位置
                    //注册事件
                    btn.Click += new EventHandler(btn_Click);
                    buttons[r, c] = btn;
                    this.Controls.Add(btn);
                }
            buttons[N - 1, N - 1].Visible = false;//最后一个不可见
        }


        //交换两个按钮
        void Swap(Button btna,Button btnb)
        {undefined
            string t = btna.Text;
            btna.Text = btnb.Text;
            btnb.Text = t;


            bool v = btna.Visible;
            btna.Visible = btnb.Visible;
            btnb.Visible = v;
        }


        //按钮点击事件处理
        void btn_Click(object sender, EventArgs e)
        {undefined
            Button btn = sender as Button;//当前点中按钮
            Button blank= FindHiddenButton();//空白按钮
            //判断与空白按钮是否相邻,如果是,交换
            if (IsNeighbor(btn, blank))
            {undefined
                Swap(btn, blank);
                blank.Focus();
            }


            //判断是否完成了
            if (ResultIsOk())
            {undefined
                MessageBox.Show("ok");
            }
        }


        //查找要隐藏的按钮
        Button FindHiddenButton()
        {undefined
            for (int r = 0; r < N; r++)
                for (int c = 0; c < N; c++)
                {undefined
                    if (!buttons[r, c].Visible)
                    {undefined
                        return buttons[r, c];
                    }
                }
            return null;
        }


        //判断是否相邻
        bool IsNeighbor(Button btnA, Button btnB)
        {undefined
            int a = (int)btnA.Tag; //Tag中记录是行列位置
            int b = (int)btnB.Tag;
            int r1 = a / N, c1 = a % N;
            int r2 = b / N, c2 = b % N;


            if (r1 == r2 && (c1 == c2 - 1 || c1 == c2 + 1) //左右相邻
                || c1 == c2 && (r1 == r2 - 1 || r1 == r2 + 1))
                return true;
            return false;
        }


        //检查是否完成
        bool ResultIsOk()
        {undefined
            for (int r = 0; r < N; r++)
                for (int c = 0; c < N; c++)
                {undefined
                    if (buttons[r, c].Text != (r * N + c + 1).ToString())
                    {undefined
                        return false;
                    }
                }
            return true;
        }
    }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯