loader image

Java program to display Fibonacci series up to a limit

Write a java program to display Fibonacci series up to a limit.

import java.util.Scanner;

class Fibonacci {
    public static void main(String[] args) {
        
        // Scanner class object to read input values
        Scanner scan = new Scanner(System.in);

        // declare variables
        int n, a = 0, b = 1, c = 0;

        // read limit from user
        System.out.print("Enter the limit : ");
        n = scan.nextInt();

        // print fibonacci series
        System.out.print("Fibonacci Series Upto " + n + ": ");
        while (c <= n) {
            System.out.print(c + ",");
            c = a + b;
            a = b;
            b = c;
        }
    }
}

Output

Enter the limit : 10
Fibonacci Series Upto 10: 0,1,2,3,5,8,
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
Scroll to Top