#!/usr/bin/env python
# -*- coding: utf-8 -*-

def fact(n):
    if n == 1 :
        return 1
    return n * fact(n-1)
print(fact(100))

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-27
  • 2022-12-23
  • 2021-06-13
猜你喜欢
  • 2021-09-24
  • 2022-12-23
  • 2021-12-06
  • 2022-01-27
  • 2021-09-09
  • 2022-12-23
  • 2021-04-28
相关资源
相似解决方案