辜 德 (Good) 的 Python 部 落 格
目 前 是 潮 州 高 中 的 數 學 老 師 , 偏 好 以 Python 來 解 決 數 學 問 題
總網頁瀏覽量
2020年10月17日 星期六
109學年度第一學期Q3
Python Code:
def factor(n,fact=[1]):
if n>=len(fact):
for i in range(len(fact),n+1):
fact.append(i*fact[i-1])
return fact[n]
sum=0
for i in range(1,36):
sum+=factor(35)//i
print(sum%19)
答案:10
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言