In this article we will learn to implement a Java program to print Fibonacci series up to n terms. A java program is provided below which accepts the number of terms to display in the Fibonacci series and prints it:
Program is as follows:
import java.util.Scanner;
public class Driver
{
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
System.out.println("Enter how many terms to display in the fib. series: ");
int n = input.nextInt();
int count = 0;
int a = 0, b = 1, c = 0;
System.out.println("Fibonacci series is: ");
if(n == 1)
{
System.out.println("0");
}
else if(n == 2)
{
System.out.println("0 1");
}
else
{
System.out.print("0 1 ");
count = 3;
while(count <= n)
{
c = a + b;
a = b;
b = c;
System.out.print(c + " ");
count++;
}
}
input.close();
}
}
Input and output for the above program is as follows:
Enter how many terms to display in the fib. series:
10
Fibonacci series is:
0 1 1 2 3 5 8 13 21 34
Suryateja Pericherla, at present is a Research Scholar (full-time Ph.D.) in the Dept. of Computer Science & Systems Engineering at Andhra University, Visakhapatnam. Previously worked as an Associate Professor in the Dept. of CSE at Vishnu Institute of Technology, India.
He has 11+ years of teaching experience and is an individual researcher whose research interests are Cloud Computing, Internet of Things, Computer Security, Network Security and Blockchain.
He is a member of professional societies like IEEE, ACM, CSI and ISCA. He published several research papers which are indexed by SCIE, WoS, Scopus, Springer and others.
Leave a Reply