期末考試-猴子吃桃(算法基礎 第10周)

問題描述: 分析 這道題可使用遞歸作,也能夠順着使用for循環來代替遞歸。 源碼ios #include <iostream> using namespace std; //總共n個猴子,第i個猴子來的時候所剩的桃子個數 int fun(int n) { int last=0; while(1){ last++; int cur=last*n+1;
相關文章
相關標籤/搜索