fork download
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace Articulos.Pregunta.P1220
  5. {
  6. public class UsoStack
  7. {
  8. public static void Main()
  9. {
  10. Stack<string> aplicaciones = new Stack<string>();
  11.  
  12. aplicaciones.Push("Notepad++");
  13. aplicaciones.Push("Chrome");
  14. aplicaciones.Push("PowerShell");
  15. aplicaciones.Push("ClipMate");
  16. aplicaciones.Push("Evernote");
  17.  
  18. // Recorrido por los elementos de la lista:
  19. foreach (string aplicacion in aplicaciones)
  20. {
  21. Console.WriteLine (aplicacion);
  22. }
  23. }
  24. }
  25. }
Success #stdin #stdout 0.05s 23960KB
stdin
Standard input is empty
stdout
Evernote
ClipMate
PowerShell
Chrome
Notepad++