gerar um vetor aleatório e depois ordenar usando o algoritmo bublle sort linguagem c
Soluções para a tarefa
Respondido por
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
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