搜索资源列表
playwordgame
- 实现简单的打单词游戏程序,每个单词长度在2-8个字母之间-Simple process of playing word games, each word 2-8 letters in length between
GreedSnake
- 贪吃蛇游戏,蛇通过吞吃额外的食物,一次来增加自己的长度-GreedSnake A game about The Snake that can eat extra food so that it can extend its length
netsnake
- 网络对战贪吃蛇,这个游戏只能在局域网里运行 游戏有几个有意思的设置,用以更改游戏难度:吃掉苹果后对方蛇长一节、吃掉苹果后我方蛇长一节、超过200分蛇恢复到原来的长度,另外还有背景音乐打开/关闭功能。 程序实现的基本原理:向路由器 255.255.255.255 发送数据则所有的局域网机器都能收到 ,就能实现无服务器局域网对战,Implements指定要在包含该语句的类模块中实现的接口或类-Online play Snake, this game can only run th
Snake
- c#写的一个贪吃蛇游戏,功能比较齐全,界面比较美观大方,可以设置初始时:食物的个数,网格的数量,蛇移动的速度,和蛇的长度,并且显示得分。-c# to write a Snake game, relatively complete, the interface is nice, you can set the initial number of: food, the number of grid snake moving speed, and the length of the snake, an
Retro-Snaker
- 通过c++实现贪吃蛇,能可以计分,蛇的长度可以自动增加,实现贪吃蛇游戏的基本功能。-By to achieve Snake c++, energy can be scored, the length of the snake can automatically increase the basic functions of the Snake game.
she
- 贪吃蛇游戏是一种老少皆宜的经典游戏,贪吃蛇游戏的基本规则:通过按键盘上、下、左、右键来控制蛇运行的方向,当蛇将食物吃了后身体长度自动增加,当蛇撞墙或吃到自身则蛇死。-Snake game is a classic game, an all ages Snake game' s basic rules: the snake running direction to control the keyboard up, down, left, right, when the snake eat t
SnakeGame
- 贪吃蛇游戏JAVA代码,可升级可设置初始长度有障碍物,有穿身穿墙宝物,增加游戏趣味性-Snake game JAVA code
carDriving
- 一个建议的鼠标操作的开车游戏,玩家需要控制自己的车辆,躲避前方和后方的来车,持续时间越久分数越高。驾驶不同的车辆将会获得不同的属性效果,如车辆坚固度、破损恢复、车身长度和加分速度等-A proposed operation of the mouse car game, players need to control their vehicles, front and rear to avoid the car, the longer the duration the higher the sco
cidaimax
- 设有n个程序{1,2,……,n}要存放在长度为L的磁带上。程序i存放在磁带上的长度是,1≤i≤n 。程序存储问题要求确定这n个程序在磁带上的一个存储方案,使得能够在磁带上存储尽可能多的程序。在保证存储最多程序的前提下还要求磁带的利用率达到最大。-There n procedures {1,2, ......, n} to be stored on the length L of the tape. I the length of the program is stored on the tape
snake5
- 该代码实现的的是可再生贪食蛇,具体规则如下:贪食蛇第一次碰墙后不会马上死掉,而是反向而行,第二次碰墙后会变短一节,第三次碰墙后地图中的中央会重新出现一条贪食蛇,蛇的长度与上一次“假死”的长度一样。-The code is implemented renewable Snake, specific rules are as follows: Snake hit the wall after the first will not immediately die, but reverse the li
TCS
- 小蛇长的快,运行后窗体中有一条移动的小蛇吃到食物后会变长,随着长度的增加,游戏操作会越难。-Snake long fast, after running the form there is a movement of the snake to eat food becomes long after, with the increase in the length of the operation will be the harder game.
Pinball-game
- 弹球游戏 通过键盘左右键控制,随着关卡难度会增加:球速与板子的长度都会变化。 希望大家喜欢-Pinball game Left and right keyboard keys to control the level of difficulty will increase as: the length of the ball and the board will change. I hope you like it
Snake
- 1 定义蛇类和食物类,初始化贪吃蛇各项成员变量,包括图像的出现在屏幕的初始位置,长度,以及蛇的行走方向。食物类的定义包括出现的初始位置,以及食物是否被吃掉的判断。 2 用数组初始化长度为3的贪吃蛇,并且默认食物未出现 3 在CView类上运用MFC提供的Windows消息中WM_TIMER消息,运用OnTimer()函数让系统提供一个时钟节拍,更新游戏 4 具体游戏实现,包括蛇撞到自己和围墙都将使游戏结束,判断吃豆等,其中还包括根据蛇的长度来进行游戏难度的改变。 5 具体键盘游戏