All pastes #2091643 Raw Edit

Anonymous

public text v1 · immutable
#2091643 ·published 2011-10-19 23:48 UTC
rendered paste body
import uk.ac.warwick.dcs.util.io.IO;

public class a342
{
	public static void main(String[] args)
	{
		int findFactorial = IO.readint("Enter the number you want the factorial of: ");
		int increment;
		int factorial = 1;
		for(increment = 1; increment <= findFactorial; increment + 1) {
			factorial = factorial * increment;
		}
		System.out.println("The factorial of " + findFactorial + "is: " + factorial);
	}
}