photo

Dhiraj Darji


Last seen: más de 2 años hace Con actividad desde 2022

Followers: 0   Following: 0

Estadística

  • First Answer

Ver insignias

Feeds

Ver por

Respondida
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...

más de 2 años hace | 0