peon125

Untitled

Apr 9th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public class ptak
  2. {
  3. protected String gatunek;
  4.  
  5. public ptak(String gatunek)
  6. {
  7. this.gatunek = gatunek;
  8. }
  9.  
  10. public void śpiwanie()
  11. {
  12. System.out.println("śpiewam");
  13. }
  14.  
  15. public String toString()
  16. {
  17. return "gatunek to " + gatunek;
  18. }
  19. }
Add Comment
Please, Sign In to add comment