public int han(int a){ if(a==1) return 1; else return han(a-1)*2+1; }输入a=3时 , return的值为7......具体计算过程是? 查看完整描述