題目:古典問題:有一對兔子,從出生後第3個月起每個月都生一對兔子,小兔子長到第三個月後每個月又生一對兔子,假如兔子都不死,問每個月的兔子總數為多少? //這是一個菲波拉契數列問題
public class lianxi01 {
public static void main(String[] args) {
System.out.println("第1個月的兔子對數: 1");
System.out.println("第2個月的兔子對數: 1");
int f1 = 1, f2 = 1, f, M=24; //f,m=24,這個是什麼意思啊?為什麼要設置等於24?
for(int i=3; i<=M; i++) { //這一段循環體又是什麼意思呢?
f = f2;
f2 = f1 + f2;
f1 = f;
System.out.println("第" + i +"個月的兔子對數: "+f2); } } }
24不是固定的,就是足夠容納就夠了
http://blog.csdn.net/duxinfeng2010/article/details/7770354
http://blog.csdn.net/cai5/article/details/10021399