摘要: n = int(input("请输入求阶乘的数\n")) sum = 1 for i in range(1,n+1): sum = sum * i print(sum) 阅读全文
posted @ 2021-09-12 22:11 boyc 阅读(93) 评论(0) 推荐(0)