登录
首页 » Java » MobileApplication3-25-3

MobileApplication3-25-3

于 2007-08-10 发布 文件大小:712KB
0 80
下载积分: 1 下载次数: 93

代码说明:

  黄金矿工的游戏,玩家控制矿工用钩子抓取金块得分。(Gold miner game, players control the gold miners crawling with hook points.)

文件列表:

MobileApplication
.................\build
.................\.....\.timestamp
.................\.....\before-obfuscation.jar
.................\.....\compiled


.................\.....\........\D1.png
.................\.....\........\Diamond.class
.................\.....\........\G1.png
.................\.....\........\G2.png
.................\.....\........\G3.png
.................\.....\........\G4.png
.................\.....\........\Gain.class
.................\.....\........\Gain.png
.................\.....\........\GameCanvas.class
.................\.....\........\GameOver.png
.................\.....\........\GameTimer.class
.................\.....\........\Gold.class
.................\.....\........\GoldHook.png
.................\.....\........\GoldMiner.class
.................\.....\........\GP.png
.................\.....\........\Hook.class
.................\.....\........\S1.png
.................\.....\........\S2.png
.................\.....\........\Start.png
.................\.....\........\Stone.class
.................\.....\........\Target.class
.................\.....\manifest.mf
.................\.....\obfuscated


.................\.....\..........\D1.png
.................\.....\..........\Diamond.class
.................\.....\..........\G1.png
.................\.....\..........\G2.png
.................\.....\..........\G3.png
.................\.....\..........\G4.png
.................\.....\..........\Gain.class
.................\.....\..........\Gain.png
.................\.....\..........\GameCanvas.class
.................\.....\..........\GameOver.png
.................\.....\..........\GameTimer.class
.................\.....\..........\Gold.class
.................\.....\..........\GoldHook.png
.................\.....\..........\GoldMiner.class
.................\.....\..........\GP.png
.................\.....\..........\Hook.class
.................\.....\..........\META-INF
.................\.....\..........\........\MANIFEST.MF
.................\.....\..........\S1.png
.................\.....\..........\S2.png
.................\.....\..........\Start.png
.................\.....\..........\Stone.class
.................\.....\..........\Target.class
.................\.....\obfuscated.jar
.................\.....\preprocessed


.................\.....\............\D1.png
.................\.....\............\Diamond.java
.................\.....\............\G1.png
.................\.....\............\G2.png
.................\.....\............\G3.png
.................\.....\............\G4.png
.................\.....\............\Gain.java
.................\.....\............\Gain.png
.................\.....\............\GameCanvas.java
.................\.....\............\GameOver.png
.................\.....\............\GameTimer.java
.................\.....\............\Gold.java
.................\.....\............\GoldHook.png
.................\.....\............\GoldMiner.java
.................\.....\............\GP.png
.................\.....\............\Hook.java
.................\.....\............\S1.png
.................\.....\............\S2.png
.................\.....\............\Start.png
.................\.....\............\Stone.java
.................\.....\............\Target.java
.................\.....\preverified
.................\.....\...........\Diamond.class
.................\.....\...........\Gain.class
.................\.....\...........\GameCanvas.class
.................\.....\...........\GameTimer.class
.................\.....\...........\Gold.class
.................\.....\...........\GoldMiner.class
.................\.....\...........\Hook.class
.................\.....\...........\Stone.class
.................\.....\...........\Target.class
.................\build.xml
.................\dist
.................\....\MobileApplication.jad
.................\....\MobileApplication.jar
.................\nbproject
.................\.........\build-impl.xml
.................\.........\genfiles.properties
.................\.........\private
.................\.........\.......\private.properties
.................\.........\.......\private.xml

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • java五子棋
    java的五子棋源码文件!(the source document!)
    2020-06-26 10:00:02下载
    积分:1
  • Hanoi-Tower
    在linux下用C语言实现了一个简单的4层汉诺塔游戏,很有借鉴意义(In linux using C language to implement a simple 4-layer Tower of Hanoi game, great reference)
    2012-01-29 17:54:05下载
    积分:1
  • 11
    说明:  一个和电脑猜拳的小游戏,适合C++初学者。(A computer game and small game, suitable for beginners C++ language. )
    2015-10-11 13:03:52下载
    积分:1
  • 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 )
    2012-12-17 10:35:16下载
    积分:1
  • 2
    说明:  Background Given a set of rectangles {R1, R2, …, Rn}, compute the area of their common intersection. i.e., Area(R1∩R2∩…∩Rn) The edges of the rectangles R1, R2, …, Rn, are either vertical or horizontal lines. For example, the intersection of 4 rectangles, R1, R2, R3, and R4, in the following figure is the shaded rectangle. Input The input contains (N + 1) lines. The first line specifies the number of rectangles N, where 1 < N < 1000. Since the sides of the rectangles are parallel to the x-axis and y-axis, each rectangle is bounded by the lines x = x1, x = x2, y = y1 and y = y2 and each subsequent line of the input file thus specifies one rectangle in the following format: x1 x2 y1 y2 such that 0 <= x1 < x2 <= 10000 and 0 <= y1 < y2 <= 10000, and x1, x2, y1 and y2 are integers. Output The output file contains the area of the intersection of all the rectangles.
    2013-11-15 02:58:38下载
    积分:1
  • 6999934
    此程序是一个迷宫的小游戏,只要用键盘的方位键就可以控制,(This program is a maze of small game, as long as the location of the keyboard can control,)
    2017-06-26 17:26:30下载
    积分:1
  • TankWar6
    强化学习版坦克大战,利用Q学习来完成坦克大战,体现强化学习的基本原理。(Battle City version of reinforcement learning, the use of Q-learning to accomplish physics, reflecting strengthening basic principles of learning.)
    2021-04-13 16:28:56下载
    积分:1
  • 消灭星星
    在Windows平台上用C++开发的一款游戏,源代码已经打包(A game application developed with C++ progamming language on Windows OS.The source code is be contained.)
    2020-06-18 14:40:02下载
    积分:1
  • MesaFireEvacuation-master
    关于人员疏散开发的程序,其中包括人员疏散中从众,人与人之间,人与墙之间的摩擦力(it is about evacuation programe, Fire Evacutation Research Project)
    2021-01-27 16:28:40下载
    积分:1
  • java围棋
    围棋游戏源代码,通过java编写的,比较简单,但是十分具有参考意义,作为新手练手项目十分不错。对于一些非专业人士,通过查阅相关知料也是能看懂的。希望把他分享给更多的人,让人们享受编程的乐趣。
    2022-03-02 04:49:10下载
    积分:1
  • 696518资源总数
  • 104297会员总数
  • 29今日下载