WRITE A PROGRAM AND DRAW A FLOWCHART TO PRINT THE FOLLOWING SERIES: 1, 2, 3, 5, 8, ………. upto 10th term in q basic
Answers
Answered by
0
Answer:
import java.util.*;
class fibonacci
{
public static void main(String args[])
{
Scanner scanner = new Scanner(System.in);
int n1=0,n2=1,n3,i,count = 10;
System.out.print(n1+" "+n2);//printing 0 and 1
for(i=2;i<count;++i)
{
n3=n1+n2;
System.out.print(" "+n3);
n1=n2;
n2=n3;
}
}
}
Explanation:
Similar questions