-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpronic.java
31 lines (30 loc) · 1.04 KB
/
pronic.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import java.io.*;
public class pronic
{
/* Pronic Number :
* A pronic number, oblong number, rectangular number or heteromecic number, is a number which is the
* product of two consecutive integers, that is, n (n + 1).
*The first few pronic numbers are:
*0, 2, 6, 12, 20, 30, 42, 56, 72, 90, 110, 132, 156, 182, 210, 240, 272, 306, 342, 380, 420, 462 … etc.
*/
public static void main () throws IOException
{
BufferedReader br = new BufferedReader (new InputStreamReader (System.in));
System.out.println("Enter the String: ");
String in = br.readLine();
int input = Integer.parseInt(in);
boolean check = false;
for (int pro = 0; pro <= input ; pro++){
int com = pro * (pro + 1);
if(com == input){
check = true;
}
}
if (check){
System.out.println ("Pronic Number.");
}
else {
System.out.println ("Not a Pronic Number.");
}
}
}