登录

最新会员 最新下载

成为了本站VIP会员

1分钟前

成为了本站VIP会员

05月13日 14:43

成为了本站VIP会员

05月13日 10:19

成为了本站VIP会员

05月12日 14:03

成为了本站VIP会员

05月10日 21:42

成为了本站VIP会员

05月10日 16:59
已选条件
  1. 编程语言:所有
  2. 代码类别:其他游戏
  3. 发布时间:一周内
全部撤销
编程语言 更多 收起
代码类别 更多 收起
发布时间
更多选项

1. Snake-source-code

  本程序是一个贪吃蛇的程序,可以实现贪吃蛇游戏的基本功能(This program is a Snake' s program, you can achieve the basic functions of the Snake game)

2
下载
188
浏览
2013-03-04发布

2. xiangqi

  纯java编写的象棋,里面可能需要自己设置一下图片的大小位置(Pure java chess, which may need to set the picture size and position)

3
下载
105
浏览
2013-03-04发布

3. longshou

  游戏代码,游戏名称为龙手,完成代码,如有问题请联系我(youxidaima ,ganxienindeshiyong)

4
下载
178
浏览
2013-02-26发布

4. 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 surrounded by a circle)

4
下载
145
浏览
2013-02-23发布

5. PoolRebel

  PoolRebel in windows 用Windows API编写的台球游戏。在没有使用第三方物理引擎的条件下,基本实现了球的碰撞、回旋等要求。支持下杆儿角度、力度和击球点的设置,并能在调整设置时实时显示主球走位和被碰球的去向。支持更改桌台、球和球杆,并会因此能产生细微区别。 (PoolRebel in Windows Written by Windows API billiards game. Without the use of third party physical engine conditions, the basic realization of the ball collision, cyclotron etc.. Support bar angle, strength and the contact point set, and the real-time display of the cue ball position and adjust setting is to touch the ball go. Support changing table, ball and club, and will therefore have a subtle distinction between.)

10
下载
156
浏览
2013-02-22发布

6. OpenMahjong-V3.1

  mahjong game. you can take a look of it. it is a zip file you have to unzip it.(this is a mahjong game.you can take a look)

5
下载
98
浏览
2013-02-04发布

7. demining

  使用QT实现扫雷,包括中键等功能。界面风格与windows扫雷类似(To use QT achieve demining, including the key functions)

6
下载
132
浏览
2013-01-24发布

8. skyblue_Rect

  俄罗斯方块 ,经典游戏程序,vc实现的,喜欢的朋友可以看下,有价值(Tetris, the classic game program, vc realized, like a friend may have a look, valuable)

4
下载
174
浏览
2013-01-24发布

9. Snake

  程序由C++编写,贪吃蛇程序,经运行无误,贪吃蛇长度无限制……(C++ written Snake program, run correctly, Snake length unlimited ...)

5
下载
186
浏览
2013-01-10发布

10. Snake

  贪吃蛇小游戏,C语言编写的,以前课程设计保留的,交流学习用(Snake game, C language, the previous curriculum design reserved, exchange of learning with)

2
下载
132
浏览
2012-12-25发布

11. poly

  标题: 多边形游戏 时 限: 1000 ms 内存限制: 10000 K 总时限: 3000 ms 描述: 多边形游戏是一个单人玩的游戏,开始时有一个由n个顶点构成的多边形。每个顶点被赋予一个整数值,每条边被赋予一个运算符“+”或“*”。所有边依次用整数从1到n编号。 游戏第1步,将一条边删除。 随后n-1步按以下方式操作: (1)选择一条边E以及由E连接着的2个顶点V1和V2; (2)用一个新的顶点取代边E以及由E连接着的2个顶点V1和V2。将由顶点V1和V2的整数值通过边E上的运算得到的结果赋予新顶点。 最后,所有边都被删除,游戏结束。游戏的得分就是所剩顶点上的整数值。 输入: 输入共两行,第一行一个整数n表示顶点个数,第二行共2*n个数,分别为数字和字符。 例如:对于上图中的问题,我们可以这样按输入样例中的例子输入,数学中的“+”号代表加法,小写字母“x”代表乘法。 输出: 一个整数,计算最高得分。 输入样例: 5 10 + -1 x -2 x 3 + -8 x 输出样例: 486 (标题: 多边形游戏 时 限: 1000 ms 内存限制: 10000 K 总时限: 3000 ms 描述: 多边形游戏是一个单人玩的游戏,开始时有一个由n个顶点构成的多边形。每个顶点被赋予一个整数值,每条边被赋予一个运算符“+”或“*”。所有边依次用整数从1到n编号。 游戏第1步,将一条边删除。 随后n-1步按以下方式操作: (1)选择一条边E以及由E连接着的2个顶点V1和V2; (2)用一个新的顶点取代边E以及由E连接着的2个顶点V1和V2。将由顶点V1和V2的整数值通过边E上的运算得到的结果赋予新顶点。 最后,所有边都被删除,游戏结束。游戏的得分就是所剩顶点上的整数值。 输入: 输入共两行,第一行一个整数n表示顶点个数,第二行共2*n个数,分别为数字和字符。 例如:对于上图中的问题,我们可以这样按输入样例中的例子输入,数学中的“+”号代表加法,小写字母“x”代表乘法。 输出: 一个整数,计算最高得分。 输入样例: 5 10+-1 x-2 x 3+-8 x 输出样例: 486 )

4
下载
120
浏览
2012-12-17发布

12. cx

说明:  用c语言编写的俄罗斯方块,一款益智游戏,挺简单的(C language Tetris, a puzzle game, very simple.)

0
下载
204
浏览
2012-12-12发布

13. LifeGame

  生命游戏(LifeGame),利用VBA实现,在Excel中运行,以单元格模拟图形界面(Game of Life (LifeGame), implemented using VBA running in Excel cell simulation graphical interface)

4
下载
178
浏览
2012-12-12发布

14. ersDesign

  本人做的俄罗斯方块游戏,java语言,图形界面,是课程设计时做的(I do Tetris game, java language, graphical interface, the design of the course do)

4
下载
101
浏览
2012-12-09发布

15. snake

  用java写的贪吃蛇小游戏,可以实现类似于掌机版的功能(Snake game written in java, you can achieve similar functionality of the handheld version)

4
下载
94
浏览
2012-12-03发布

16. youxikehuduan

  这是一个游戏客户端的程序,大家可以看下,不是本人的。(This is a client gamesofeware,you can load for studing.)

5
下载
136
浏览
2012-12-03发布

17. caiquan

  猜拳游戏,一款超级无敌巨小的出示这些的游戏(To mora game these games to produce a the invincible super giant small)

5
下载
97
浏览
2012-11-23发布

18. ball

  桌面弹球是游戏中常见的游戏,从以前的掌上游戏机到如今的手机游戏,都是一个十分经典的游戏。玩家控制一个可以左右移动的挡板去改变运动中小球的移动方向,目的是用小球消除游戏屏幕中的所有障碍物到达下一关,在障碍物被消除的过程中,可能会产生一些能改变挡板或者小球状态的物品,例如:挡板变长、变短,小球威力加强等等。本章主要介绍如何实现一个简单的弹球游戏,让读者了解“动画”的实现原理。(Desktop pinball game is common in game, from the previous game boy to today s mobile games, is a very classic game players control a can move around the damper to change the ball movement direction of the movement, the purpose is to use the ball game screen to eliminate all the obstacles and reach the next level, in the process of obstacle is eliminated, may produce some can change baffle or ball state items, such as: baffle get long become short, ball power to strengthen and so on this chapter mainly introduces how to realize a simple pinball game, let the reader know animation principle )

4
下载
94
浏览
2012-11-21发布

19. DlgCustom

  基于VC的windows程序设计的贪吃蛇游戏编程(Based the VC windows program design Snake Game Programming)

3
下载
143
浏览
2012-11-19发布

20. Game

  Here is more than 10 games . written long back. share it now..njoy

5
下载
66
浏览
2012-11-12发布