Problem 7
Posted noonjuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Problem 7相关的知识,希望对你有一定的参考价值。
Problem 7
# Problem_7.py """ 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? 第10001个质数是什么? 质数定义为在大于1的自然数中,除了1和它本身以外不再有其他因数。 """ primes = [] for i in range(2, 999999): flag = True for x in range(2, i): if i % x == 0: flag = False break if flag: print(i) primes.append(i) if len(primes) == 10001: break print(primes) print(primes[-1])
以上是关于Problem 7的主要内容,如果未能解决你的问题,请参考以下文章
《DSP using MATLAB》Problem 7.11