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