public Ackermann(int x) { this.x = x; if (x != 0) { a = new Ackermann(x - 1); } }
public static int Test(int y) { Ackermann a = new Ackermann(1); return(a.Calculate(y)); }
public static int Test(int y) { Ackermann a = new Ackermann(1); return a.Calculate(y); }
public Ackermann(int x) { this.x = x; if (x != 0) a = new Ackermann(x-1); }