通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
编写代码,输出 1~100 的所有素数。
for i in range(2100): for j in range (2,i): if i%j==0: break print(i,end='.')