2018年9月4日
摘要: def calc(n): print(n) if int(n / 2) == 0: return n return calc(int(n / 2))res=calc(10)print res 阅读全文
posted @ 2018-09-04 22:51 *-帝释天-* 阅读(103) 评论(0) 推荐(0) 编辑