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

 

james.shockey@austinisd.org > LASA_fibonacciSeries
prev  |  next  |  chance

Fibonacci Series Recreation The Fibonacci series is a series in which the next term is the sum of the two preceding terms. Return the sum for Fibonacci series up to n numbers.


LASA_fibonacciSeries(100, 0, 0, 1) → 233
LASA_fibonacciSeries(13, 0, 0, 1) → 34
LASA_fibonacciSeries(21, 0, 0, 1) → 55

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

public int LASA_fibonacciSeries(int n, int sum, int t1, int t2){ }

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

Copyright Nick Parlante 2017 - privacy