laboon / cs0401

CS0401 Intermediate Java (Bill Laboon)
37 stars 75 forks source link

Lab14 Line 21 #133

Closed jenniferbramson closed 8 years ago

jenniferbramson commented 8 years ago

I think you meant System.out.println("Fib(" + num + ") = " + num); instead of System.out.println("Fib(" + num + ") = 1"); since there are two base cases (Fib(0) = 0 and Fib(1) = 1) and one is equal to 0, not 1.

laboon commented 8 years ago

Yes, this was a typo. Thank you.

Fixed in commit 7d063fd

You get +2 bonus points on your last assignment for finding this.