使用while 循环实现输出 1-100 内的所有奇数;
a=1 while a<100: if a%2 == 1: print(a) a +=1 else: a +=1
原文地址:https://www.cnblogs.com/riling/p/10068839.html
时间: 2024-10-18 02:14:58
使用while 循环实现输出 1-100 内的所有奇数;
a=1 while a<100: if a%2 == 1: print(a) a +=1 else: a +=1
原文地址:https://www.cnblogs.com/riling/p/10068839.html