Java program to find Fibonacci series of a given number

Java program to find Fibonacci series of a given number

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*Write a program to find Fibonacci series of a given no.
  Example :
  Input - 8
  Output - 1 1 2 3 5 8 13 21
 */
class Fibonacci{
	public static void main(String args[]){
		int num = Integer.parseInt(args[0]); //taking no. as command line
		argument.
			System.out.println("*****Fibonacci Series*****");
		int f1, f2=0, f3=1;
		for(int i=1;i<=num;i++){
			System.out.print(" "+f3+" ");
			f1 = f2;
			f2 = f3;
			f3 = f1 + f2;
		}
	}
}
surajk

67 thoughts on “Java program to find Fibonacci series of a given number

  1. public class Fibonacci {

    public static void main(String[] args)
    {
    int n=10,i,f0=1,f1=1,f2=0;
    if(f2==0 && f1==1)
    {
    System.out.println(f2);
    System.out.println(f1);
    }
    for(i=0;i<=n;i++)
    {
    f2=f0+f1;
    f0=f1;
    f1=f2;
    f2=f0;
    System.out.println(f2);
    }

    }
    }

  2. It is but it is a bit wrong
    After c=a+b; type if(c<n) break;
    Then continue with the same code

  3. I’m having problem learning to code properly. I understand the concepts but I have a problem putting them in NetBeans

Leave a Reply

Your email address will not be published. Required fields are marked *

Get the latest updates on your inbox

Be the first to receive the latest updates from Codesdoc by signing up to our email subscription.

    StudentProjects.in