public class fac { public static void main(String[] a) { int r = fac(4); } public static int fac ( int n ) { return fac(n-1); } }