Jump to content

teste em c# sobre arrays listas e pilhas


LinaMaria

Recommended Posts

Bom dia,

Explica um pouco melhor as tuas duvidas!

Como sugestão, podes usar uma label e algumas textboxes, tipo as textboxes para inserires dados para o arraylist, para pilhas ou filas, e depois usares a label para listar.

Ficam alguns exemplos para tentar ajudar um pouco!

Array:

 string[] arr1 = new string[] { "abc", "def", "ghy", "jkl" };

Lista:

List<int> lista = new List<int>();
        lista.Add(0);
        lista.Add(2);
        lista.Add(4);
        lista.Add(7);

Arraylist:

 ArrayList arraioqoplista = new ArrayList();
        arraioqoplista.Add("primeiroRaio");
        arraioqoplista.Add("segundoRaio");
        arraioqoplista.Add("terceiroRaio");

Pilha:

Stack<int> pilha = new Stack<int>();
        pilha.Push(10);
        pilha.Push(100);
        pilha.Push(1000);

 

Cordiais cumprimentos,

Apocsantos

  • Vote 1

"A paciência é uma das coisas que se aprendeu na era do 48k" O respeito é como a escrita de código, uma vez perdido, dificilmente se retoma o habito"

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.