Happy 5th birthday, Cody! Since 5 is a prime number, let's have some fun looking for other prime numbers.
Given a positive integer x, find the nearest prime number. Keep in mind that the nearest prime may be less than x.
Examples
nearestprime(5) = 5 nearestprime(36) = 37 nearestprime(200) = 199
NOTE: You may ignore cases in which two prime numbers are equally close to x. (e.g., x=12 --> 11 and 13 are both primes).
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers661
Suggested Problems
-
Find state names that end with the letter A
1197 Solvers
-
Find the largest value in the 3D matrix
1666 Solvers
-
720 Solvers
-
We love vectorized solutions. Problem 1 : remove the row average.
884 Solvers
-
Solving Quadratic Equations (Version 1)
504 Solvers
More from this Author43
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Test case No. 5
x = 911;
y_correct = 911;
Should the nearest prime number for 911 have been 907?