在 JavaScript 中比指定数字大的最小素数
我们需要编写一个JavaScript函数,它接受一个正整数作为第一个也是唯一的参数。
该函数应该找到一个这样的最小素数,它刚好大于指定为参数的数字。
例如-
如果输入是-
const num = 18;
那么输出应该是:
const output = 19;
示例
以下是代码:
const num = 18; const justGreaterPrime = (num) => { for (let i = num + 1;; i++) { let isPrime = true; for (let d = 2; d * d <= i; d++) { if (i % d === 0) { isPrime = false; break; }; }; if (isPrime) { return i; }; }; }; console.log(justGreaterPrime(num));输出结果
以下是控制台输出-
19