fork(5) download
  1. class Lista<T>
  2. {
  3. private T[] arreglo;
  4.  
  5. public Lista(int tamanio)
  6. {
  7. arreglo = new T[tamanio];
  8. }
  9.  
  10. public T ObtenerElemento(int indice)
  11. {
  12. return arreglo[indice];
  13. }
  14.  
  15. public void AgregarElemento(int indice, T valor)
  16. {
  17. arreglo[indice] = valor;
  18. }
  19. }
  20.  
  21. public class PruebaLista
  22. {
  23. public static void Main ()
  24. {
  25. Lista<int> listaEnteros = new Lista<int>(5);
  26.  
  27. listaEnteros.AgregarElemento(0, 2);
  28. listaEnteros.AgregarElemento(1, 3);
  29. listaEnteros.AgregarElemento(2, 5);
  30. listaEnteros.AgregarElemento(3, 7);
  31. listaEnteros.AgregarElemento(4, 11);
  32.  
  33. Lista<double> listaDoubles = new Lista<double>(3);
  34.  
  35. listaDoubles.AgregarElemento(0, 7.11);
  36. listaDoubles.AgregarElemento(1, 13.17);
  37. listaDoubles.AgregarElemento(2, 19.23);
  38. }
  39. }
Success #stdin #stdout 0.01s 33568KB
stdin
Standard input is empty
stdout
Standard output is empty