JAVA写的连连看游戏及源码

时间:2013-11-14 07:49:43
【文件属性】:

文件名称:JAVA写的连连看游戏及源码

文件大小:9KB

文件格式:RAR

更新时间:2013-11-14 07:49:43

java

使用java编写的连连看。for (int twins = 1; twins <= 15; twins++) { randoms = (int) (Math.random() * 25 + 1); for (int alike = 1; alike <= 2; alike++) { cols = (int) (Math.random() * 6 + 1); rows = (int) (Math.random() * 5 + 1); while (grid[cols][rows] != 0) { cols = (int) (Math.random() * 6 + 1); rows = (int) (Math.random() * 5 + 1); } this.grid[cols][rows] = randoms; } }


【文件预览】:
连连看游戏及源码
----game.java(8KB)
----game.jar(4KB)
----game.class(6KB)

网友评论