I need a function that returns the smallest prime number p smaller than 100,000 such that (p + n) is also prime, where n is a scalar integer and is the sole input argument to the function
1 次查看(过去 30 天)
显示 更早的评论
Write a function called prime_pairs that returns the smallest prime number p smaller than 100,000 such that (p + n) is also prime, where n is a scalar integer and is the sole input argument to the function. If no such number exists, then the function returns -1. You may use the built-in functions, primes and isprime.
3 个评论
采纳的回答
更多回答(1 个)
charu sharma
2015-8-27
For simple code refer this and ask if you have any query: http://farzicoders.blogspot.in/2015/08/write-function-called-primepairs-that.html
1 个评论
Stephen23
2015-8-27
"simple code" with:
- poorly named variables: for i=1:l
- superfluous intermediate variables: flag
- superfluous loops when code vectorization would be neater.
- superfluous return statements.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!