FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Java/Maths/FibonacciNumber.java at master · loisoft/Java · GitHub
loisoft
/
Java
Public
forked from
TheAlgorithms/Java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Java
/
Maths
/
FibonacciNumber.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
35 lines (32 loc) · 1.11 KB
Breadcrumbs
Java
/
Maths
/
FibonacciNumber.java
Copy path
File metadata and controls
35 lines (32 loc) · 1.11 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
package
Maths
;
/** Fibonacci: 0 1 1 2 3 5 8 13 21 ... */
public
class
FibonacciNumber
{
public
static
void
main
(
String
[]
args
) {
assert
isFibonacciNumber
(
1
);
assert
isFibonacciNumber
(
2
);
assert
isFibonacciNumber
(
21
);
assert
!
isFibonacciNumber
(
9
);
assert
!
isFibonacciNumber
(
10
);
}
/**
* Check if a number is perfect square number
*
* @param number the number to be checked
* @return <tt>true</tt> if {@code number} is perfect square, otherwise <tt>false</tt>
*/
public
static
boolean
isPerfectSquare
(
int
number
) {
int
sqrt
= (
int
)
Math
.
sqrt
(
number
);
return
sqrt
*
sqrt
==
number
;
}
/**
* Check if a number is fibonacci number This is true if and only if at least one of 5x^2+4 or
* 5x^2-4 is a perfect square
*
* @param number the number
* @return <tt>true</tt> if {@code number} is fibonacci number, otherwise <tt>false</tt>
* @link https://en.wikipedia.org/wiki/Fibonacci_number#Identification
*/
public
static
boolean
isFibonacciNumber
(
int
number
) {
return
isPerfectSquare
(
5
*
number
*
number
+
4
) ||
isPerfectSquare
(
5
*
number
*
number
-
4
);
}
}
Back
|
FazBrowse Home
|
New Git URL