|
楼主 |
发表于 2012-3-6 09:15:08
|
显示全部楼层
代码帖的有点乱,怎么都没人能帮忙看看呢?
c3 p" b( {# y2 ? A6 {# ]; e public void spreadmoney(int m){
7 X: O9 r, k4 K( C for(int i=0;i<m;i++){1 M0 E7 j( {8 K5 L0 x# q
int x = (int)(Math.random()*(moneyspace.getSizeX()));1 \6 a! W6 X5 t; k" P7 x( ~
int y = (int)(Math.random()*(moneyspace.getSizeY()));
' Z" y. s; E- S7 u$ j+ ^) A! h3 @4 ^/ b6 b) b
int I;3 f9 J q, J- K6 O
if(moneyspace.getObjectAt(x,y)!=null
2 ~ D1 B1 h7 {! W I = ((Integer)moneyspace.getObjectAt(x,y)).intValue();
7 v( g+ u% O) M* Z }
2 |5 M) F9 ^- S5 O" U9 U else{
9 a o1 H- W6 R2 k I = 0;
9 r0 S" K- e' P4 g0 ~0 \ }
) j8 G; l" h3 p! e2 } moneyspace.putObjectAt(x, y, new Integer(I+1)); }
' n; F; \% _3 s: d$ _2 e } |
|