Hi All, having a little difficultly here, how can I combine these two for loops together:
Many thanks!
1 2 3 4 5 6 | for ( int i= 514 ; i< 650 ; i+= 60 ) { addObject( new Coin(), i, 304 ); } for ( int i= 548 ; i< 650 ; i+= 60 ) { addObject( new Coin(), i, 259 ); } |