Showing posts with label fibonacci series. Show all posts
Showing posts with label fibonacci series. Show all posts

Tuesday, March 23, 2010

Fibonacci

import java.io.*;
public class fibonacci
{  
  public static void main(String args[]) throws IOException
  {  
  InputStreamReader read = new InputStreamReader(System.in);
  BufferedReader br = new BufferedReader(read);
   
  int a=0, b=1;
  int c;
  for(int i=0;i<11;i++)
  { c=a+b;
  System.out.println(c);
  a=b;
  b=c;
  }
  }
}