Nodo

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

public class nodo {

String idpro, nompro;


float precio;
nodo sig, ant;

nodo(String id, String nom, float prec) {


idpro = id;
nompro = nom;
precio = prec;
sig = ant = null;
}
}

You might also like