標題:
因數分解
[打印本頁]
作者:
tonyh
時間:
2022-4-23 16:30
標題:
因數分解
n=int(input("請輸入一正整數: "))
print(n,"的因數有: ",sep="",end="")
for i in range(1,n+1):
if n%i==0:
print(i,end=" ")
複製代碼
作者:
郭詩瑜
時間:
2022-4-23 16:45
i = int(input("請輸入一個整數:"))
print(f"{i}的因數有:",sep=" ",end="")
for n in range(1,i+1):
if (i%n == 0):
print(n,end=", ")
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2