ricskooo

Untitled

Mar 9th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public class Main {
  2. public static void main (String args[]){
  3. ClassTorpedo torpedoObject = new ClassTorpedo(new int[]{3, 2, 6});
  4.  
  5.  
  6. TobbTorpedo torpedoGame = new TobbTorpedo(torpedoObject);
  7.  
  8. System.out.println(torpedoGame.toString());
  9.  
  10. torpedoGame.checkhit("A",3);
  11.  
  12.  
  13. System.out.println(torpedoGame.toString());
  14. }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment