- public class CowNumber {
- public static void main(String[] args) {
- System.out.println("第1年的牛数: 1");
- System.out.println("第2年的牛数: 1");
- int f1 = 1, f2 = 1, f, Y=100;
- for(int i=3; i<=Y; i++) {
- f = f2;
- f2 = f1 + f2;
- f1 = f;
- System.out.println("第" + i +"年的牛数: "+f2);
- }
- }
- }
复制代码 |