Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Sklep{
- static public void main (String agg[]){
- Towar t1 = new Towar();
- t1.pokazDane();
- Towar t2 = new Towar("pies",40,"pies123");
- t2.pokazDane();
- Towar t3 = new Towar("kot",40,"kot123");
- t3.pokazDane();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement