Hii...
Whats Fibonacci..?!
Answers
Answered by
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
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
}
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
Science,
8 months ago
Math,
8 months ago
Accountancy,
8 months ago
Biology,
1 year ago
Math,
1 year ago