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

Java > Recursion-1 > factorial
prev  |  next  |  chance

Given n of 1 or more, return the factorial of n, which is n * (n-1) * (n-2) ... 1. Compute the result recursively (without loops).

factorial(1) → 1
factorial(2) → 2
factorial(3) → 6

...Save, Compile, Run         

See also Java Example Code. Java help docs: If Boolean Logic | Strings | While and For Loops | Arrays and Loops


prev  |  next  |  chance   |  CodingBat  >  Recursion-1

Forget It! -- delete my code for this problem 303.0

Copyright Nick Parlante 2006-10 - privacy