您好,登錄后才能下訂單哦!
本篇文章為大家展示了使用C#怎么實現一個猜數字小游戲,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
代碼:
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 _1csz { public partial class Form1 : Form { int x;///定義的是一個全局變量 public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e)///產生一個隨機數 { Random rd = new Random(); x = rd.Next(100); } private void button2_Click(object sender, EventArgs e)///顯示正確答案 { label4.Visible = true; label4.Text = x.ToString(); } private void button3_Click(object sender, EventArgs e)///退出鍵 { Application.Exit(); } private void Form1_Load(object sender, EventArgs e)///窗體初始化 { label3.Visible = false; label4.Visible = false; } private void textBox1_KeyDown(object sender, KeyEventArgs e)///KeyDown事件:當焦點在文本框時按下任何鍵都觸發該事件 { if (e.KeyCode==Keys.Enter)///KeyCode屬性獲取KeyUp和KeyDown事件的鍵盤代碼,其值用Keys枚舉成員名 { if (x==int.Parse(textBox1.Text)) { label3.Visible = true; label3.Text = "猜對了,你真棒!"; } else if (int.Parse(textBox1.Text) > x) { label3.Visible = true; label3.Text = "真是,猜大了!"; } else { label3.Visible = true; label3.Text = "真是,猜小了!"; } } } } }
上述內容就是使用C#怎么實現一個猜數字小游戲,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。