def fac(n):
    if n == 1:
        return 1
    return n * fac(n-1)

  

posted on 2018-10-12 10:55  蕾拉  阅读(457)  评论(0编辑  收藏  举报