Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public
  2. class Owoc {
  3.  
  4. int iloscPestek;
  5. String barwa;
  6.  
  7. Owoc(int iloscPestek, String barwa){
  8. this.iloscPestek = iloscPestek;
  9. this.barwa = barwa;
  10. }
  11.  
  12. void show(){
  13. System.out.println(
  14. this + "Ja owowc mam " + iloscPestek +
  15. " i jest barwy " + barwa
  16. );
  17. }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement