Does the Java API provide a function which computes the next largest prime number given an input x?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
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 |
|||
|
} |
||||
|