Java Code for Fibonacci Series

This java programming code is used to find the fibonacci series. You can select the whole java code by clicking the select option and can use it. When you click text, the code will be changed to text format. This java program code will be opened in a new pop up window once you click pop-up from the right corner. You can just copy, paste this java code and use it to find the fibonacci series.

import java.io.*;
import java.util.Scanner;
import java.lang.*;
class Fibonacci
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
int n_value=10, first_value = 0, second_value = 1, next_value, c_value;
for ( c_value = 0 ; c_value < n_value ; c_value++ )
{
if ( c_value <= 1 )
next_value = c_value;
else
{
next_value = first_value + second_value;
first_value = second_value;
second_value = next_value;
}
System.out.print(next_value+",");
}

}
}
Other Programming Codes
Online Calculator : Fibonacci Series
Click on the select code link to copy and paste this free java program code for fibonacci series.

english Calculators and Converters

Ask a Question


Sitemap