var find = n=>{ if(n==1){return 0} if(n==2 || n ==3){return 1} return find(n-1)+find(n-2)+find(n-3) }
暂无评论,快来抢首评~
相关推荐