设有递归算法如下,
int x(int n)
{
 if(n<=3)
     return 1;
 else
     return x(n-2)+x(n-4)+1;
}
试问计算x(x(8))时需要计算()次x函数。