Computer Science, asked by 044arijit, 1 year ago

wap in java to print the next fibnocci number.​

Answers

Answered by hazellighte888
1

Answer:

public class JavaExample {

public static void main(String[] args) {

int count = 7, num1 = 0, num2 = 1;

System.out.print("Fibonacci Series of "+count+" numbers:");

for (int i = 1; i <= count; ++i)

{

System.out.print(num1+" ");

/* On each iteration, we are assigning second number

* to the first number and assigning the sum of last two

* numbers to the second number

*/

int sumOfPrevTwo = num1 + num2;

num1 = num2;

num2 = sumOfPrevTwo;

}

}

}

Explanation:

Hope this helps

Similar questions