Vizient Interview Question

Write a function that displays all the fibonacci numbers under 100

Interview Answer

Anonymous

Dec 6, 2018

I went above and beyond by having the user input ANY number that the fibonacci numbers could go to. Simply make a while loop with your logic inside breaking once that input number is reached. DO NOT use recursion for this problem.