Dec 18, 2006 18:36
public class McCarthy
{
int f(int n)
{
if (n > 100)
{
return n - 10;
}
else
{
return f(f(n + 11));
} // if
} // f
} // McCarthy
class McCarthyProgram
{
public static void main(String[] args)
{
McCarthy mc = new McCarthy();
int n = 102;
System.out.println(mc.f(n));
} // main
} // McCarthyProgram