photo

Dhiraj Darji


Last seen: oltre 2 anni fa Attivo dal 2022

Followers: 0   Following: 0

Statistica

  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
Building the Fibonacci using recursive
function f= fibor(n) if n<=2 f=1; else f=fibor(n-1)+fibor(n-2); end This is working very well for small numbers bu...

oltre 2 anni fa | 0