2013年8月14日

battleship

摘要: import java.util.ArrayList;import java.util.Scanner;public class game { private ArrayList ship = new ArrayList(); int numGuess = 0; public static void main(String[] args){ Game game = new Game(); game.setup(); } private void setup(){ ship.add(new S... 阅读全文

posted @ 2013-08-14 06:40 brave_bo 阅读(326) 评论(0) 推荐(0)

导航