搜索资源列表
snake(贪食蛇)
- 一个贪食蛇的小游戏,可以一个人或者两个人玩-a small game can be a person or two people play
snake(c)
- 贪食蛇小游戏(利用TC开发(c语言))。希望大家多多指教。-embedding of small games (TC use development (c language)). We hope the exhibitions.
snake-matlab
- 用matlab编写的一个贪食蛇游戏,短小精悍.学习matlab 可以参考-using Matlab prepared a pivotal game, short and pithy. Learning can refer Matlab
21339_snake
- snake Borland C++ 贪食蛇程式范本.-snake Snake Borland C programming model.
WinAPI_Snake
- 本程序是用纯API函数写得一个小的贪食蛇游戏,可供初学者学习用-this program is written in pure API function of a small Tanshichi game for beginners to learn from
tss
- 一个Turbo C编写的贪食蛇游戏的源代码-a Turbo C Tanshichi prepared by the game's source code
MOVSNAKE
- 一个贪食蛇的源码,在turbo c下运行,载入即可-a Tanshichi the source, the turbo c running, will be included in the
esnake
- 贪食蛇,蛇头是蓝色的,挺好玩的,在turbo c下运行-Tanshichi, snakeheads are blue, very good play, in running turbo c
delphivc_snake_DX
- 本软件是一个贪食蛇游戏,中间夹有背景图片和音乐。有完整的源代码。-the software is a Tanshichi game, in the middle folder background pictures and music. Complete source code.
tanshishe
- 使用VC++平台开发的贪食蛇游戏游戏,可供游戏爱好者参考学习
snake_bete0.1
- 自己用C语言编写的NDS掌机运行的贪食蛇游戏,用了PAlib函数库,与大家分享,希望对大家有帮助。。。编译前请先确认安装了devkitPro
game_snake
- 用VB做的贪食蛇游戏,虽然是个老游戏,但是很经典,希望能通过站长的法眼!
CSNAKE
- 过去用 borland c 写的一个贪食蛇。 主要视学习算法。(只能用Borland c 编译)
MySnake
- 用VC编写的简单版贪食蛇,用(W,A,S,D)分别的上,左,下,右,还可以用向上,向下,向左,向右键
VB.NET实验报告--贪食蛇
- 大学可视化编程实验--贪食蛇-University of visual programming experiment -- Snake
贪食蛇--新1
- 自己写的贪吃蛇游戏,体现了完整的面向对象思想-himself wrote the Snake games, reflects the integrity of the object-oriented thinking
Snake
- 简单的贪食蛇游戏.........在网上找到得-Simple Snake game on the web, too .........
qk_snake_api
- VC++贪吃蛇游戏源码 贪食蛇编程要点 1、每次刷屏时需要注意无效矩形区的大小和位置,一般取整条蛇最小坐标和最大坐标组成的矩形(包括蛇的头和身体) 2、蛇全身的运行轨迹应该参照蛇头的运行轨迹 3、蛇吃下东西之后身体各点的变化情况应该参照第一点的变化,即第一点发生变化之后下一时间段第二点发生变化,再下一时间段第三点发生变化,依此类推,直到最后一点发生变化结束 4、分数的计算变量:蛇吃的一般屎数量、蛇吃大屎的数量、游戏的难度级别 计算公式:(一般屎数量+大屎数量)*难度级别
贪食蛇游戏
- 贪食蛇游戏 ,在DOS控制台运行,方向键控制方向. void Pos(int x,int y) { COORD pos; HANDLE hOutput; pos.X=x; pos.Y=y; hOutput=GetStdHandle(STD_OUTPUT_HANDLE); SetConsoleCursorPosition(hOutput,pos); }