Python 練習實例14 將一個正整數分解質因數

題目:將一個正整數分解質因數。例如:輸入90,打印出90=2*3*3*5。 git x = int(input("是否進入循環?是:1, 否:0\n"))appwhile(x):     n = int(input("請輸入一個正整數:"))     print ("%d = " %n , end = '')     while n not in [1]:         for index in
相關文章
相關標籤/搜索