资源列表
weqws
- c语言编写的find 雷小游戏 很好玩,大家可以尝试下-c language find mine very fun game, we can try the next
migong
- 迷宫小游戏,自动更改线路,控制简单,操作方便,等你来-Maze game, automatically change the line to control a simple, easy to operate, waiting for you to
dazixunlianyouxi
- 这是一款打字训练游戏,对于打字新手来说,是个锻炼的机会要-This is a typing training game, for typing novice, the opportunity to exercise
213
- 迷你撞球游戏,一款娱乐的小游戏,增加趣味性,没事消磨点时间,-Mini billiards game, a game of entertainment, more interesting, and nothing to spend time, ha ha
HShield-Simple-Log-Viewer-1.4
- 这个程序是hackshield日志管理程序。 代码是用vc写的。 用于冒险岛游戏分析。-This program is hackshield log viewer. Source code is writed by vc. This program can use in maplestory analyze .
kinect-hit
- C#打地鼠,用kinect控制,制作了简单的实现-C# Gophers kinect control, making a simple implementation
08copy
- 魔力宝贝任务脚本 08官服魔力新年任务 脚本源码-Magic Baby the task scr ipt-08 robes magic New Year tasks
AccountServer
- 御剑江湖帐号服务器源代码,C++,工程是vc9,但建议用vc6编译最好。-The Sword itinerant account server source code, C++ project is vc9, but it is recommended to use vc6 compiler best.
gameloader
- 御剑江湖的gameloader源代码,as3,已经修复,是最基本的引擎,供有兴趣的人研究-webgame 御剑江湖,the source code of the gameloader
tictacmodel
- The game logic for a well known game, tic tac (3 in a row), not this was made as a layered application, and this is only the game logic, but easy to implement your own presentation layer.
yanhua
- 可惜一开始没能画成圆,所以整个过程都是菱形的变换,希望大家多多指教,能够想办法把初始状态就围成一个圆-Unfortunately, the beginning could not draw into a round, so the whole process is the diamond transformation, we hope the exhibitions, to be able to think of a way to put the initial state is surroun
juzhenxiangcheng
- 编写程序,可以实现m*n矩阵和n*p矩阵相乘。m,n,p均小于10,矩阵元素为整数。 分析: 首先我们可以根据题意写出函数头。可以定为void MatrixMutiply(int m,int n,int p,long lMatrix1[MAX][MAX],long lMatrix2[MAX][MAX],long lMatrixResult[MAX][MAX]),其中lMatrix1和lMatrix2分别是输入的m*n矩阵和n*p矩阵,lMatrixResult是输出的m*p矩阵。 因