赞
踩
i=int(input(“请输入一个数:”)) j = 2 while j <= i / j : if not i % j or i%7==0: break j = j + 1 if j > i / j: # 证明上面没有break出来 print(i, " 是素数")