资源列表
Minesweeper
- 自己用java做的一个简单的扫雷游戏,用JFRAME 和jpanel-Minesweeper
OOP_ch05
- 简单的快速打符号的小游戏 自己做的小练习-Simple and fast game play symbols
foxnrabbit
- 《狐狸与兔子》此程序可以模拟仿真狐狸与兔子的捕食与被捕食的种间关系,便于学习者通过程序更加透彻地了解其本质。-Fox and rabbit, this program can simulate the relationship between the predator and the prey of the fox and rabbit, which is convenient for the learners to understand the nature of the program mo
game
- 这是一个简单的控制台游戏,玩家可以自己建立地图和怪物数据进行游戏,也可以把地图等资料发送给好友分享-This is a simple console game, players can create their own maps and data monster games, maps and other information can also send to a friend Share
snake
- 一个简单的贪吃蛇程序,最大的缺陷是,图形界面不完善,其他都不错.-Snake a simple procedure, the biggest drawback is that graphical interface imperfect, the other good.
pingpangqiu
- Flash小游戏,类似乒乓球,就是这样 界面黑白,中间有个球飞来飞去-Flash game similar to table tennis
snakeGame
- 一个java swing 的贪吃蛇游戏,算法很有代表性 面向对象的主程序-Representation of object-oriented main program is a java Swing Snake game, the algorithm is very
mldengluqigood
- 个人觉得这款登录器还是不错的,魔力宝贝用的,不过也是在论坛里下载的,还不错!-Personally feel that this is a good sign, magic baby with, but also in the forum to download, but also good!
saiche
- 一个游戏,没有什么大的用处,也是给新手学习的,我还回更加努力的学习上传的- racing game
mofang
- Java编写的网页版魔方游戏,编译后生成.class文件,然后用HTML去调用,不过运行时候需要你的浏览器安装有运行Class的插件。-Written in Java web game cube version, compiler generated. Class files, then use HTML to call, but when you need to run a browser plug-ins installed to run Class.
CTetris
- 用C语言制作超级经典的单机游戏,俄罗斯方块,适用于C语言的初学者 -Using C language to made Tetris
worminmanor
- 用户输入一个正整数n,控制台就输出n*n的矩阵,从1开始+1递增,并成环绕状。如: input:3 output:1 2 3 8 9 4 7 6 5 本代码实现功能虽然简单,但使用面向对象技术,形象的用小虫子吃菜叶来描述,并使用了单例、工厂等模式。