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 Java If-else Statements August 18, 2018 Constructor In Java August 20, 2018 Scanner Class In Java August 16, 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.