Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Element {
- int dane;
- Element next;
- public Element (int x, Element n)
- {
- dane=x;
- next=n;
- }
- public Element getNext()
- {
- return next;
- }
- public int getWartosc()
- {
- return dane;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement