Skip to content

Commit a6a2dd4

Browse files
authored
Update Fibonacci_series.java
added comment to make it useful for users to understand what fibonacci is
1 parent 99e55ee commit a6a2dd4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Fibonacci/Fibonacci_series.java

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* JAVA code to find the fibonacci series.The Fibonacci numbers are the numbers in the following integer sequence: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, …….. */
2+
13
class Fibonacci_series {
24
public static void main(String args[]) {
35
int n1 = 0, n2 = 1, n3, i, count = 20;

0 commit comments

Comments
 (0)