-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdditive Prime Number
67 lines (61 loc) · 1.09 KB
/
Additive Prime Number
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import java.io.*;
class Solution {
static boolean isPrime(int n)
{
if (n <= 1)
return false;
for (int i = 2; i < n; i++)
if (n % i == 0)
return false;
return true;
}
public static void main(String[] args) {
int num1=0;
int num2=0;
try {
num1 = Integer.parseInt(args[0]);
}
catch (NumberFormatException nfe) {
System.out.println("first argument should be a number");
System.exit(1);
}
catch(ArrayIndexOutOfBoundsException e) {
System.out.println("first number is missing");
System.exit(1);
}
try {
num2 = Integer.parseInt(args[1]);
}
catch (NumberFormatException nfe) {
System.out.println("second argument should be a number");
System.exit(1);
}
catch(ArrayIndexOutOfBoundsException e) {
System.out.println("second number is missing");
System.exit(1);
}
if(num1>num2)
{
System.out.println("first number should be less than equal to second number");
System.exit(1);
}
int count=0;
for(int i=num1;i<=num2;i++)
{
int temp=i;
int sum=0;
while(temp>0)
{
sum=sum+temp%10;
temp=temp/10;
}
if(isPrime(sum) && isPrime(i))
{
System.out.print(i+" ");
count++;
}
}
if(count==0)
System.out.print("not found");
}
}