
编写一个函数,以正整数为参数,并显示小于或等于它的所有素数之和。
解决方案
// define a function named addprimesum that takes a single parameter 'number'function addprimesum(number) { // initialize a variable 'result' to store the sum of prime numbers, starting from 0 let result = 0; // define an inner function named isprime that takes a single parameter 'num' function isprime(num) { // if 'num' is less than 2, it is not prime, so return nothing (undefined) if (num < 2) return; // loop from 2 to half of 'num' to check for factors for (let i = 2; i 1) { // check if 'number' is prime using the isprime function if (isprime(number)) { // if it is prime, add it to 'result' result += number; } // decrement 'number' by 1 to check the next lower number number--; } // return the total sum of all prime numbers found return result;}console.log(addprimesum(5));console.log(addprimesum(21));console.log(addprimesum(100));console.log(addprimesum(239));console.log(addprimesum(956));
解决方案
> 10> 77> 1060> 5589> 70241
以上就是使用 JavaScript 添加给定整数的素数总和的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/1493151.html
微信扫一扫
支付宝扫一扫