请用for循环,将0-100的偶数输出出来,但是如果遇到10的倍数,不输出跳过.
for i in range(101): if i % 2 == 0 and i % 10 !=0: print(i)
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。