练习1--python代码实现阶乘

a = int(input("enter number")) def multple(a): total =1 for i in range(1,a+1): total *= i return total print (multple(a))
相关文章
相关标签/搜索