-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGetLastDigitOfFibbonaciNumber.java
73 lines (55 loc) · 1.7 KB
/
GetLastDigitOfFibbonaciNumber.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import java.util.*;
import java.io.*;
import java.math.BigInteger;
public class GetLastDigitOfFibbonaciNumber {
static BigInteger getLastDigitOfFibbonaciNumber(int number) {
BigInteger first = BigInteger.ZERO;
BigInteger second = BigInteger.ONE;
BigInteger next = BigInteger.ZERO;
BigInteger ten = BigInteger.TEN;
if(number == 0){
return first;
}else if (number ==1 ){
return second;
} else{
for(int i =2; i <= number ; ++i){
next = first.add(second);
first = second;
second = next;
}
}
return next.mod(ten);
}
public static void main(String[] args) {
FastScanner scanner = new FastScanner(System.in);
System.out.println("Last digit of nth fibbonci number");
System.out.println("enter number to get ");
int n = Integer.parseInt(scanner.next());
System.out.println(getLastDigitOfFibbonaciNumber(n));
}
static class FastScanner {
BufferedReader br;
StringTokenizer st;
FastScanner(InputStream stream) {
try {
br = new BufferedReader(new
InputStreamReader(stream));
} catch (Exception e) {
e.printStackTrace();
}
}
String next() {
while (st == null || !st.hasMoreTokens()) {
try {
st = new StringTokenizer(br.readLine());
} catch (IOException e) {
e.printStackTrace();
}
}
return st.nextToken();
}
long nextInt() {
return Long.parseLong(next());
}
}
}