Skip to content

Commit

Permalink
Update 27-burbuja.py
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbcaro authored Oct 6, 2022
1 parent 5227fb2 commit 54b7df4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions 27-burbuja.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
def pedirDatos():
lista = []
while True:
n = int(input("Ingresa el numero que quieras (0 para terminar):"))
n = int(input("Ingresa el número que quieras (0 para terminar):"))
if n == 0:
return lista
else:
Expand All @@ -28,13 +28,13 @@ def burbuja(lista):
return lista,cont
def mostrarLista(lista,cont):
tam = len(lista)
print(f"Lista ordenada en {cont} ciclos de forma acendente:")
print(f"Lista ordenada en {cont} ciclos de forma ascendente:")
for i in range(0,tam):
print(f"{lista[i]}")
print(f"Lista ordenada en {cont} ciclos de forma desendente:")
print(f"Lista ordenada en {cont} ciclos de forma descendente:")
for i in range(tam,0,-1):
print(f"{lista[i-1]}")

lista = pedirDatos()
lista, cont = burbuja(lista)
mostrarLista(lista, cont)
mostrarLista(lista, cont)

0 comments on commit 54b7df4

Please sign in to comment.