Fibonacci Series In Java Post author:admin Post published:October 1, 2018 Post category:Java Post comments:0 Comments class Fibonacci { public static void main(String args[]) { int a=1,b=1,c; System.out.println(+a); System.out.println(+b); for(int i=1;i<=10;i++) { c=a+b; System.out.println(+c); a=b; b=c; } } } Output: 1 1 2 3 5 8 13 21 34 55 89 144 Tags: fibonacci series in Java You Might Also Like Scanner Class In Java August 16, 2018 Do-While Loop In Java August 19, 2018 Method Overloading In Java September 29, 2018 Leave a Reply Cancel replyCommentEnter your name or username to comment Enter your email address to comment Enter your website URL (optional) Save my name, email, and website in this browser for the next time I comment.