for迴圈——兔子繁殖問題,for兔子繁殖

來源:互聯網
上載者:User

for迴圈——兔子繁殖問題,for兔子繁殖

有個人想知道,一年之內一對兔子能繁殖多少對?於是就築了一道圍牆把一對兔子關在裡面。已知一對兔子每個月可以生一對小兔子,而一對兔子從出生後第3個月起每月生一對小兔子。假如一年內沒有發生死亡現象,那麼,一對兔子一年內(12個月)能繁殖成多少對?  分析:兔子的規律為數列,1,1,2,3,5,8,13,21 (用迴圈實現)

 

System.out.println("第1個月兔子的對數: 1");
System.out.println("第2個月兔子的對數: 1");
int f1 = 1, f2 = 1, f;
for (int i = 3; i <= 12; i++) {
  f = f2;
  f2 = f1 + f2;
  f1 = f;
  System.out.println("第" + i + "個月的兔子對數:" + f2);
}

 

運行結果:

第1個月兔子的對數: 1
第2個月兔子的對數: 1
第3個月的兔子對數:2
第4個月的兔子對數:3
第5個月的兔子對數:5
第6個月的兔子對數:8
第7個月的兔子對數:13
第8個月的兔子對數:21
第9個月的兔子對數:34
第10個月的兔子對數:55
第11個月的兔子對數:89
第12個月的兔子對數:144

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.