题解 | #查找组成一个偶数最接近的两个素数#
查找组成一个偶数最接近的两个素数
http://www.nowcoder.com/practice/f8538f9ae3f1484fb137789dec6eedb9
let n = readline() function isP(n) { let flag = 0 for(let i=2;i<=Math.pow(n,0.5);i++) { if(n % i === 0) { flag += 1 return false } } return true } let res = [] for(let i=2;i<=n;i++) { if(isP(i)) { res.push(i) } } let max = Infinity let a = [] for(let j=0;j<res.length;j++) { let index = res.indexOf(n - res[j]) if(index !== -1) { let mult = Math.abs(res[j] - res[index]) if(mult < max){ a = [] a.push(res[j],res[index]) max = mult }
}
} console.log(a[0]) console.log(a[1])