返回列表 發帖
  1. def compute(n):
  2.     c=1
  3.     for i in range(1,n+1):
  4.        c=c*i
  5.     return c
  6. n=int(input())
  7. t=compute(n)
  8. print(f"{n}!={t}")
複製代碼

TOP

返回列表