1. 程式人生 > >水仙花 ,氣泡排序 ,二分法 等重要的思想

水仙花 ,氣泡排序 ,二分法 等重要的思想

# 1. 水仙花
# n = input("請輸入一個三位數:") # 156
# s = int(n[0])**3 + int(n[1])**3 + int(n[2]) ** 3
# if int(n) == s:
# print("是水仙花")
# else:
# print("不是")

#氣泡排序
# lst = [88,5,8,6,1,23]
# for a in range(len(lst)): # 記錄內部排序的次數
# i = 0
# while i < len(lst) - 1: # 把最大值移動到右端
# if lst[i] > lst[i+1]: # 比較,
# lst[i], lst[i+1] = lst[i+1], lst[i] # 交換
# i = i + 1
# print(lst)