《实训二C#编写猜数字游戏程序.ppt》由会员分享,可在线阅读,更多相关《实训二C#编写猜数字游戏程序.ppt(15页珍藏版)》请在三一办公上搜索。
1、实训二,猜数字游戏,1、随机产生0100的整数作为谜底2、用户在文本框填写所猜数字3、单击试试手气按钮,显示猜测数字与谜底关系。4、猜测值与谜底关系:1)大于:“第某次尝试,你猜的数字偏大!”2)小于:“第某次尝试,你猜的数字偏小!”3)等于:“恭喜你,猜中了!共尝试了某次!”,任务描述,5)消息框提示:“再玩一次”6)选择再玩一次,重新生成谜底,清除Label中的文字7)选否,退出程序,任务描述,程序执行过程,Random函数,random创建随机序列。Random rnd=new Random();例:0,101)的整数int rndint=rnd.Next(101);100,199的整数
2、int rndint2=rnd.Next(100,200);,MessageBox函数,MessageBox.Show(“要显示的消息”,消息框标题”,MessageBoxButtons.YesNo),显示YesNo按钮,控件设置,控件设置,初始界面,程序代码,using System;using System.Windows.Forms;namespace Ch2 public partial class Frm:Form/谜底 private int answer;private int count;public Frm()InitializeComponent();,private vo
3、id Frm_Load(object sender,EventArgs e)Random rnd=new Random();/产生0-100的随机整数 answer=rnd.Next(101);/判断是否猜中 private void button1_Click(object sender,EventArgs e)count+;if(Convert.ToInt32(this.textBox1.Text)answer)this.label2.Text=第+count+次尝试,你猜的+数字偏大;return;if(Convert.ToInt32(this.textBox1.Text)answer)this.label2.Text=第+count+次尝试,你猜的+数字偏小;return;,DialogResult result;this.label2.Text=恭喜您,猜中了!共尝试了+count+次;result=MessageBox.Show(再玩一次?,猜数字小游戏,MessageBoxButtons.YesNo);if(result=DialogResult.Yes)this.textBox1.Text=;this.label2.Text=;count=0;else Application.Exit();,运行结果,运行结果,运行结果,