Project Euler | Problem 7 | Find 10001st Prime number in Java?
Problem Description :
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 10001st prime number?
For generating prime numbers we are using Sieve of Eratosthenes algorithm. This is very simple and efficient algorithm for generating primes.
Algorithm :
If you want to generate all prime number below N. Please follow below steps.
- Create boolean array of length N and assign 'TRUE' to all elements of an array.
- Find the sqrt of N because loop will run from 2 to sqrt(N).
- In loop, check whether element present at current index is 'TRUE'. If yes, then assign 'FALSE' to all elements whose index is multiple of current index.
Java Program :
Output :
Output - Project Euler Problem 7 |
References :
Thank you friends, I hope you have clearly understood the solution of this problem. If you have any doubt, suggestion or query please feel free to comment below. You can also discuss this solution in our forum.
Tags : Project Euler Problem 7 solution in Java, Prime numbers, 10001st Prime, Mathematics problems, if else statement, for loop, Eratosthenes Algorithm, Arrays.
Project Euler | Problem 7 | Find 10001st Prime number in Java?
Reviewed by Rohit Agarwal
on
1/13/2017
Rating:
No comments:
Please provide your valuable comments. If you have any suggestion please share with me I will work on it and if you have any question or doubt please ask, don't hesitate. I am your friend, i will clarify all your doubts.