135,690 views
41 votes
41 votes
a series could be an arithmetic progression or geometric progression or fibonacci series.you will be provided with N numbers. you task is to identify which series it is, and find the next number in that series.​

User JC Guidicelli
by
2.5k points

1 Answer

26 votes
26 votes

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;

count = scanner.nextInt();

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;

}

}

}

Step-by-step explanation:

User Zemzela
by
2.8k points