print('质数为:') for i in range(101, 201): for j in range(2, i): if i % j == 0: break else: print(i)
因篇幅问题不能全部显示,请点此查看更多更全内容