Computer Science, asked by mdqamer41, 6 hours ago

class name : fibbo variables : int a (to generate first number) int b (to generate second number ) int c (to generate the sum) int x class fibbo { public void main ( ) { int a=0, b=1, c=0, x; system.out.printIn (enter first 10 Fibbo number''); system .out.println (+a); System.out.println (+b); for ((a)____; (b)___; (c)___; { c = (d)___; System.out.print (+c); a=____(e); b= (f)____; . Clear selection a) x=3 x=2 x=0 b) x​

Answers

Answered by aarishvedi
0

Answer:

The Fibonacci numbers are the numbers in the following integer sequence.

0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ……..

In mathematical terms, the sequence Fn of Fibonacci numbers is defined by the recurrence relation  

Fn = Fn-1 + Fn-2

with seed values  

F0 = 0 and F1 = 1.

Explanation:

Similar questions