mport os os.system('cls')
miLista = [] # lista para ordenar
flag = True # lo necesitamos verdadero (True) para
ingresar al bucle while
contador = int(input("¿Cuántos Elementos Ingresará? : "))
4
# Leer los Elementos de la Lista while contador > 0:
agregar = float(input("Ingrese elemento cualquiera : ")) miLista.append(agregar)
contador -= 1 print()
print("Lista Original : ", miLista)
# Aquí inicio el Ordenamiento while
flag: flag = False # no hay flag hasta ahora
for i in range(len(miLista) - 1):
if miLista[i] > miLista[i + 1]:
flag = True # ocurrió el intercambio!
miLista[i], miLista[i + 1] = miLista[i + 1], miLista[i]
print()
print("*** MÉTODO DE BURBUJA ***\n")
print("Lista Ordenada : ", miLista)
me podrían ayudar por favor es para une examen que tengo
gracias
Respuestas
Respuesta dada por:
0
Respuesta:
buf....................
Preguntas similares
hace 2 años
hace 5 años
hace 5 años
hace 5 años
hace 7 años