×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Sum of the Border elements of 2D Array Harshad Number or Niven Number
Pronic Number - java - Java
7177    Arnab De    09/12/2018

Write a program to input a number and check and print whether it is a Pronic number or not. (Pronic number is the number which is the product of the two consecutive integers)

Examples    

12 = 3 x 4

20 = 4 x 5

42 = 6 x 7

This is very interesting program, which I found in the ICSE 2018 Computer Application paper. We can use different logic to execute the same but here I am use a very easy logic. Just find out the square root of the number and get the integer part. Now find out the multiplication of the integer part and the next number of the integer part. Now compare it with the actual number. If it is equal then print a positive message otherwise print a negative message. Pronic number is also known as Heteromecic Number.

softetechnologies
import java.util.*;
public class Pronic
{
    public static void main(String []args)
    {
        Scanner sc=new Scanner(System.in);
        System.out.print("Enter a Number : ");
        int no=sc.nextInt();
        int k=(int)Math.sqrt(no);
        if(no==(k*(k+1)))
        {
            System.out.println("It is a Pronic No.");
        }
        else
        {
            System.out.println("It is not a Pronic No.");
        }
    }
}
softetechnologies
Sum of the Border elements of 2D Array Harshad Number or Niven Number
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Rabindranath Tagore
Every child comes with the message that God is not yet discouraged of man.
Rabindranath Tagore
2255
85.22
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     54810
25/06/2018     45933
01/01/2018     44110
28/06/2017     41666
02/08/2017     40751
01/08/2017     34757
06/07/2017     34522
15/05/2017     33747
11/09/2018     31362
14/07/2017     30615
softetechnologies