Community Profile

photo

NEHA THAKUR


Last seen: mer än ett år ago Active since 2020

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
Generating Fibonacci Sequence Using While Loop
fibf(1) = 1; fibf(2) = 1; n=3 while fibf(n-1) < 1000 fibf(n) = fibf(n-1)+fibf(n-2); n=n+1; end

ungefär 4 år ago | 1