Java中的Fibonacci系列程序,无需使用递归。

以下是必需的程序。

示例

public class Tester {
   public static void main(String args[]) {
       int n1 = 0, n2 = 1, n3, i, max = 5;
       System.out.print(n1 + " " + n2);
       for (i = 2; i < max; ++i) {
          n3 = n1 + n2;
          System.out.print(" " + n3);
          n1 = n2;
          n2 = n3;
       }
    }
 }

输出结果

0 1 1 2 3