首页 > 代码库 > projecteuler---->problem=7----10001st prime
projecteuler---->problem=7----10001st prime
title:
By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13.
What is the 10 001st prime number?
通过列出前6个质数,我们可知第6个质数是13。
那么第10001个质数是多少呢?
解答:
import math # 试除法 def isOk(a): for i in range(2,int(math.sqrt(a))+1): if a%i == 0: return False return True n=0 i=2 while n<10001: if isOk(i) : n+=1 i += 1 print i-1
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。