練習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))
相關文章
相關標籤/搜索