He was a great mathematician.he is known for fabonacci number,fabonacci prime and many more.
Fibonacci numbers determine a pattern in nature, and the way we design things aesthetically and functionally. Also look into the Golden Rectangle, very interesting - Did you know the size of your credit card is created using this method, to be a 'nice' size. - also your TV screens, some windows.
#include #include using std::cin;using std::cout;using std::endl;using std::tolower;long factorial(const int& N);int main(){int N = 0; //factorial of Nchar command = 'n';do{cout > N;cout
Private Sub Command1_Click() Dim x,g,n,i,sum as Integer n=Val(Text1.Text) x=0 y=1 Print x Print y for i=3 To n Sum = x + y Print Sum x = y y = Sum Next i End Sub