How do I find the nearest prime number greater than the input? This is what I've managed to do so far...
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
function out = next_prime(X)
out = 0;
n = 0;
while out == isprime(X)
n = n + 1;
out = out + n + X;
end
end
0 Kommentare
Antworten (1)
Deepak
am 1 Jul. 2023
You can complete your code with this method -
function out = next_prime(X)
out = X + 1; % Initialize the output as the next number after X
while ~isprime(out)
out = out + 1; % Increment the output by 1 until a prime number is found
end
end
0 Kommentare
Siehe auch
Kategorien
Mehr zu Discrete Math finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!