函数 puzzle 定义如下,则调用 puzzle(7) 程序会⽆限递归。( )
int puzzle(int n){ if(n ==1)return 1; if(n%2==0)return puzzle(n/ 2); return puzzle(3*n+ 1); }