在开头插入要挪几次 👁️ 0 人浏览 💬 0 人评论 ❤️ 添加收藏 运行下面这段程序,它数的是"挪了几次":n = 5 moves = 0 for j in range(n, 0, -1): moves += 1 print(moves)
全部评论