Board logo

標題: 因數分解 [打印本頁]

作者: tonyh    時間: 2022-4-23 16:30     標題: 因數分解

  1. n=int(input("請輸入一正整數: "))
  2. print(n,"的因數有: ",sep="",end="")
  3. for i in range(1,n+1):
  4.     if n%i==0:
  5.         print(i,end=" ")
複製代碼

作者: 郭詩瑜    時間: 2022-4-23 16:45

  1. i = int(input("請輸入一個整數:"))
  2. print(f"{i}的因數有:",sep=" ",end="")
  3. for n in range(1,i+1):
  4.     if (i%n == 0):
  5.         print(n,end=", ")
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2