id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

gaurav.gupta@mq.edu.au loops > inFibonacciSequence
prev  |  next  |  chance

A fibonacci sequence is one starting with the numbers 0 and 1, and every following number being the sum of the previous two terms. Thus, the fibonacci sequence is 0, 1, 1, 2, 3, 5, 8 ... Define a function that when passed an integer, returns true if it exists in the fibonacci sequence, false otherwise.


inFibonacciSequence(0) → true
inFibonacciSequence(1) → true
inFibonacciSequence(54) → false

...Save, Compile, Run (ctrl-enter)

boolean inFibonacciSequence(int n) { }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 2 Post-solution available

Copyright Nick Parlante 2017 - privacy