Does the Java API provide a function which computes the next largest prime number given an input x?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
That would be a pretty esoteric method, and not really a great candidate for inclusion in a general class library. You would need to write this yourself, using either a test or a sieve. |
|||||||
|
|
There is
This uses a 2, 4 wheel to skip over multiples of 2 and 3. You will need a prime testing method:
which returns |
|||
|
} |
||||
|