Advertisement
lazar955

Untitled

Apr 12th, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. package dvostruko;
  2.  
  3. public class CvorDSL {
  4. public int podatak;
  5. public CvorDSL sledeci;
  6. public CvorDSL prethodni;
  7.  
  8. public CvorDSL(int podatak,CvorDSL prethodni,CvorDSL sledeci) {
  9. this.podatak = podatak;
  10. this.sledeci = sledeci;
  11. this.prethodni = prethodni;
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement