返回列表 發帖
  1. list = []
  2. while True:
  3.     n = input("Enter Number(stop input x):")
  4.     if (n == "x"):
  5.         break
  6.     else:
  7.         n = int(n)
  8.         list.append(n)
  9. l = len(list)
  10. print(f"排序前: {list}")
  11. for i in range(0, l - 1):
  12.     for j in range(i + 1, l):
  13.         if (list[i] > list[j]):
  14.             wlist = list[i]
  15.             list[i] = list[j]
  16.             list[j] = wlist
  17. print(f"排序後: {list}")
複製代碼

TOP

返回列表