-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprimpalin.java
59 lines (47 loc) · 1.15 KB
/
primpalin.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
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
import java.util.Scanner;
class testing {
public static long fibonacci(long n)
{
long a=1,b=0;long c=0;
while(n>0)
{
c=a+b;
a=b;b=c;
n--;
}return c;
}
}
public class primpalin
{
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
System.out.println("enter number");
long n=sc.nextLong();
long ans=testing.fibonacci(n);
System.out.println(ans);
}
}
// int n=sc.nextInt();int count =0,rev=0,rem=0;
// int num=n;
// while(n!=0)
// {
// rem= n%10;
// rev=rev*10+rem;
// n=n/10;
// }
// if(rev==num)
// {
// for(int i=1;i<=num;i++)
// {
// if(num%i==0)
// {
// count++;
// }
// }
// if(count==2)
// {
// System.out.println("number is prime palindrome");
// }
// }sc.close();
// }
// }