visual studio 2010设计一个windows的窗体 猜数字小游戏 数字由 random 随机生成 在1到100之间

格式:猜数字小游戏输入你猜的数字:新游戏猜一猜猜对了提示恭喜你猜对了!!一共猜了几次.猜小了提示太小猜大了提示太大... 格式:
猜数字小游戏
输入你猜的数字:
新游戏 猜一猜
猜对了 提示 恭喜你 猜对了!!一共猜了几次.
猜小了 提示 太小
猜大了 提示 太大
展开
 我来答
MyAppleKnows
2012-05-31 · TA获得超过695个赞
知道小有建树答主
回答量:448
采纳率:0%
帮助的人:418万
展开全部

给你个完美版本,我刚刚在VS中写的,测试通过。

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Windows.Forms;

namespace 猜数字小游戏

{

    //说明:猜一猜按钮的Name为buttonOK,由上到下三个label分别为label1、label2、label3

    public partial class Form1 : Form

    {

        private int num = 0;

        private int totalTimes = 0;//猜的总次数

        public Form1()

        {

            InitializeComponent();

        }

        private void buttonOK_Click(object sender, EventArgs e)

        {

            int inputNum = 0;

            try//可能用户输入并不是正确的数字,如输入abc,在此尝试转换

            {

                inputNum = Convert.ToInt32(textBoxInput.Text.Trim());

            }

            catch (Exception ex)

            {

                MessageBox.Show("发生错误,请重新输入数字:\r\n " + ex.Message);

                textBoxInput.Text = "";

                textBoxInput.Focus();

                return;

            }

            totalTimes++;

            label2.Text = "你已经猜了" + totalTimes.ToString() + "次";

            if (inputNum != num)

            {

                if (inputNum > num)

                {

                    label3.Text = "你猜的数字太大了!";

                }

                else

                {

                    label3.Text = "你猜的数字太小了!";

                }

                textBoxInput.SelectAll();

                textBoxInput.Focus();

            }

            else

            {

                MessageBox.Show("恭喜你猜对了!正确数字是" + num.ToString() + ",你一共猜了" + totalTimes.ToString() + "次");

                label3.Text="恭喜你猜对了!请点击“开始游戏”重新开始新一轮游戏";

                buttonStartGame.Enabled = true;

                buttonOK.Enabled=false;

                buttonEndGame.Enabled=false;

            }

        }

        private void buttonStartGame_Click(object sender, EventArgs e)

        {

            totalTimes = 0;

            label2.Text = "";

            label3.Text = "";

            buttonStartGame.Enabled = false;

            buttonEndGame.Enabled = true;

            buttonOK.Enabled = true;

            textBoxInput.Text = "";

            textBoxInput.Focus();

            Random sourceGen = new Random();//随机数

            num=sourceGen.Next(0, 101);

        }

        private void buttonEndGame_Click(object sender, EventArgs e)

        {

            buttonStartGame.Enabled = true;

            buttonOK.Enabled=false;

            buttonEndGame.Enabled=false;

            MessageBox.Show("很遗憾你没有猜对,正确数字是"+num.ToString()+",你已经猜了"+totalTimes.ToString()+"次");//不想猜了,可直接结束游戏,以开始一个新游戏

            

        }

        private void Form1_Load(object sender, EventArgs e)

        {

            buttonStartGame.Enabled = true;

            buttonEndGame.Enabled = false;

            buttonOK.Enabled = false;

            label2.Text = "";

            label3.Text = "";

        }

    }

}

本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式