FileDocCategorySizeDatePackage
Ch03_02.javaAPI DocExample650Mon Oct 27 14:30:58 GMT 2003org.eclipsebook.ch03

Ch03_02

public class Ch03_02 extends Object
author
Steven Holzner To change the template for this generated type comment go to Window>Preferences>Java>Code Generation>Code and Comments

Fields Summary
Constructors Summary
Methods Summary
public static intfactorial(int value)

		if(value == 1){
			return value;
		}
		else {
			return value * factorial(value - 1);			
		}
	
public static voidmain(java.lang.String[] args)

		System.out.println(factorial(6));