
C#
文章平均质量分 78
Beta3
这个作者很懒,什么都没留下…
展开
-
打字母游戏
很简单的一个小程序:用一个label数组来表示下降的字母,当从键盘键入的字母与下降的字母有相同的就在最上面(X坐标随机)随机生成一个新的字母。下面是主要的程序代码段: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.原创 2007-07-13 21:41:00 · 1155 阅读 · 1 评论 -
贪吃蛇(改进)
该程序分成3个文件:第一个文件:Fang.csusing System;using System.Collections.Generic;using System.Text;using System.Windows.Forms;using System.Drawing;namespace Snake{ public class Fang:Button { publ原创 2007-07-13 21:15:00 · 665 阅读 · 0 评论 -
贪吃蛇代码
using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using System.Data;namespace SNAKE{ /// /// Form1 的摘要说明。 /// public class Form1 :原创 2007-06-13 22:04:00 · 1157 阅读 · 0 评论