使用python中的程序打印出前1000个素数(2除外)。所有我能得到的输出是数字3.不明白我的循环结束的地点或时间。非常新的编程。有人可以帮忙吗?
primeCounter = 1
candidate = 3
while primeCounter < 1000:
isPrime = True
counter = 2
while counter < candidate:
if candidate%counter == 0:
isPrime = False
else:
counter = counter + 1
if isPrime == True:
print candidate
primeCounter = primeCounter + 1
candidate = candidate + 1
答案 0 :(得分:3)
primeCounter = 1
candidate = 3
while primeCounter < 1000:
isPrime = True
counter = 2
while counter < candidate:
if candidate%counter == 0:
isPrime = False
break # <<<<<<<<<<<<<<<<< break here, or the loop will go infinite
else:
counter = counter + 1
if isPrime == True:
print candidate
primeCounter = primeCounter + 1
candidate = candidate + 1
答案 1 :(得分:2)
将isPrime
设置为False
后,您再也不会再增加counter
,因此您永远不会退出内部while
循环。
答案 2 :(得分:0)
你的问题
while counter < candidate:
if candidate%counter == 0:
isPrime = False
如果不是候选%计数器,则会得到无限循环。