Computer Science, asked by Anonymous, 1 year ago

Hii...
Whats Fibonacci..?!

Answers

Answered by rahul1119
2
In mathematics, the Fibonacci numbers are the numbers in the following integer sequence, called the Fibonacci sequence, and characterized by the fact that every number after the first two is the sum of the two preceding ones.
Answered by aksachan6121
3
HEYA..

ANSWER...

Fibonacci is a series of numbers..

in this every next term is the sum of last two terms..

eg. 1, 2,3,5,8,11, ...

here 1 and 2 are initials
3=(2+1)
5=(3+2)
8=(5+3)
.and so on..


in C++

there is a program to print this series..
.for that u have to use for loop and a function
like..
{ third=first+second ;
first=second
}
Similar questions