photo

Dhiraj Darji


Last seen: plus de 2 ans il y a Actif depuis 2022

Followers: 0   Following: 0

Statistiques

  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
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...

plus de 2 ans il y a | 0