Advertisement
MkArs

Untitled

Nov 5th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. package pets;
  2.  
  3. public class FishMaster {
  4.  
  5.     public static void main(String[] args) {
  6.  
  7.         Fish myFish = new Fish();
  8.         myFish.dive(2);
  9.         myFish.dive(3);
  10.         myFish.dive(2, 7);
  11.         myFish.sleep();
  12.         myFish.say("Привет");
  13.     }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement