最近刚开始学python,先试着从一些简单运用开始吧! #coding-utf-8 import math #实现各阶次方运算 def power(x,n): s=1 while n>0: s=s*x n-=1 return s #实现阶乘运算 def jiecheng(x): a=1 while(x): a=a*x x-=1 return a print jiecheng(input(":")) print power(input("输入底数:"),input("输入次幂:"))
python 简单实现阶乘与幂方
最新推荐文章于 2024-03-30 18:20:34 发布