例9 中展示了使用 if语句、取模运算、 continue 配合,让程序只输出奇数。 #例 9 # 循环中使用 continue current_number = 0 # 变量初值为1 while current_number < 10: # 循环条件变量值小于等于10,进入循环 current_number += 1 # 变量值加1 if current_number % 2 == 0: # 判断取模是否为0 cont...