Advertisement
Davidsale96

clase nodo

Dec 5th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.08 KB | None | 0 0
  1. package parciales;
  2.  
  3. public class NodoInt {
  4.     int elem;
  5.     NodoInt siguiente;
  6.    
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement