2024年2月7日
摘要: pyhon代码 def print_powers_of_two(N): for i in range(1, N+1): result = 2 ** i print(f"2的{i}次方= {result}") N = int(input("请输入一个整数N:")) print_powers_of_tw 阅读全文
posted @ 2024-02-07 21:40 旧时代的残党 阅读(215) 评论(0) 推荐(0) 编辑