Sunday, February 19, 2017

Write a JAVA program that display the Fibonacci sequence

class FibonacciExample1{
public static void main(String args[])
{  
 int n1=0,n2=1,n3,i,count=Integer.parseInt(args[0]);  
 System.out.print(n1+" "+n2);//printing 0 and 1  
 
 for(i=2;i<count;++i)//loop starts from 2 because 0 and 1 are already printed  
 {  
  n3=n1+n2;  
  System.out.print(" "+n3);  
  n1=n2;  
  n2=n3;  
 }
}
}

output:
>java FibonacciExample1 10

0 1 1 2 3 5 8 13 21 34

No comments:

Post a Comment

Write a JAVA program to sort an array of Strings

import java.util.Scanner; public class SortStrings {     public static void main(String[] args)     {         int n;         String t...