Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Disclosure: My content contains affiliate links.

43,236 questions

56,139 answers

573 users

How to print all pronic numbers between 1 and 100 in Node.js

1 Answer

0 votes
// A pronic number is a number which is the product of two consecutive integers
// 42 = 6 * 7 -> yes 6 and 7 is consecutive integers
// 45 = 5 * 9 -> no 5 and 9 is not consecutive integers

function isPronicNumber(num) {  
    for (let i = 1; i <= num; i++) {  
        if ((i * (i + 1)) == num) {  
            return true;
        }  
    }  
    return false;  
}  

for (let i = 1; i <= 100; i++) {  
    if (isPronicNumber(i))  
        console.log(i);  
}  




/*
run:

2
6
12
20
30
42
56
72
90

*/

 



answered Nov 17, 2022 by avibootz

Related questions

1 answer 155 views
1 answer 195 views
1 answer 217 views
1 answer 202 views
1 answer 214 views
1 answer 200 views
1 answer 200 views
...