forked from arghyaxcodes/NumberPrograms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLucky_22.java
More file actions
34 lines (30 loc) · 763 Bytes
/
Lucky_22.java
File metadata and controls
34 lines (30 loc) · 763 Bytes
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
// Java program to check Lucky Number
import java.util.*;
class Lucky_22
{
public static int counter = 2;
// Returns 1 if n is a lucky no. ohterwise returns 0
static boolean isLucky(int n)
{
// variable next_position is just for readability of
// the program we can remove it and use n only
int next_position = n;
if(counter > n)
return true;
if(n%counter == 0)
return false;
// calculate next position of input no
next_position -= next_position/counter;
counter++;
return isLucky(next_position);
}
// driver program
public static void main (String[] args)
{
int x = 5;
if( isLucky(x) )
System.out.println(x+" is a lucky no.");
else
System.out.println(x+" is not a lucky no.");
}
}