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

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

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

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,026 questions

51,982 answers

573 users

How to check whether a given number is a pronic number in C#

1 Answer

0 votes
using System;

// 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

class Program
{
    static bool isPronicNumber(int num) {  
        for (int i = 1; i <= num; i++) {  
            if ((i * (i + 1)) == num) {  
                return true;
            }  
        }  
        return false;  
    } 
    static void Main() {
        int num = 42;
     
        if (isPronicNumber(num))  
            Console.Write("yes");  
        else
            Console.Write("no");  
    }
}


 
 
 
/*
run:
 
yes
 
*/

 



answered Jul 25, 2021 by avibootz

Related questions

1 answer 180 views
1 answer 132 views
1 answer 279 views
1 answer 131 views
1 answer 133 views
1 answer 148 views
...