標題:
公因數
[打印本頁]
作者:
陳育霖
時間:
2024-1-20 01:06
標題:
公因數
raw=input("請依序輸入兩個正整數: ").split(" ")
a=int(raw[0]);
b=int(raw[1]);
smaller=min(a,b)
sum=0
print(a,"與",b,"的公因數有: ",end="")
for i in range(1,smaller+1):
if a%i==0 and b%i==0:
print(i,end=" ")
sum+=1
print("\n共有",sum,"個!")
複製代碼
作者:
朱雨沅
時間:
2024-1-20 18:28
此帖僅作者可見
作者:
朱雨沅
時間:
2024-1-20 18:33
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2