deathpain
devkemo
long factorial = 1; for (int x=1; x<=20; x++) { factorial = factorial * x; system.out.println(x + "! = " + factorial);}