Develop a Java program to print the first 7 terms of fibonacci series.

class fibona
{
 public static void main(String[] args) 
 {
  int a, b, c;
  a = 0;
  b = 1;
  System.out.print(a +"\t" + b +"\t");
  for(int i=0;i<7;i++)
  {
   c = a+b;
   System.out.print(c + "\t");
   a = b;
   b = c;
  }
 }
}
/*   OUTPUT!!!
0       1       1       2       3       5       8       13      21
*/
Copyright © LetML. Blogger Templates Designed by OddThemes