Advertisement
Guest User

Untitled

a guest
Apr 25th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public static void main(String[] args)
  2. {
  3. String typeFish = null;
  4. String size = null;
  5. String color = null;
  6. Aquarium aq = new Aquarium();
  7. Fish[] fishies = new Fish[10];
  8. fishies[0].setColor("Green");
  9. fishies[0].setSize("Big");
  10. fishies[0].setTypeFish("Trout");
  11. fishies[1] = new Fish(typeFish, size, color);
  12.  
  13.  
  14.  
  15.  
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement