Informática, perguntado por maycon102, 1 ano atrás

gerar um vetor aleatório e depois ordenar usando o algoritmo bublle sort linguagem c

Soluções para a tarefa

Respondido por adrielbb15
1
 *******BUBBLE SORT          int[] vetor = new int[] { 8, 3, 6, 4, 2, };            int aux;
            for (int i = 0; i < vetor.Length; i++)            {                for (int j = 0 ; j < vetor.Length-1; j++)                {                    if (vetor[j] > vetor[j + 1])                    {                        aux = vetor[j];                        vetor[j] = vetor[j + 1];                        vetor[j + 1] = aux;
                    } 
                }            }
            for (int i = 0; i < vetor.Length; i++)            {                Console.Write(" " + vetor[i]);            }

essa é em linguagem c# epero ajudar


Perguntas interessantes