1 /** 2 * 题目:创建一个方法,接受一个整数参数,并显示从第一个元素开始总共由该参数指定的个体数所构成的所有斐波那契数字。 3 * 例如:运行Fibonacci5,得到,1,1,2,3,5. 4 * @author Administrator 5 * 6 */ 7 public class Fibonacci { 8 9 public static void main(String[] args) { 10 int i = 1; 11 int j = 1; 12 int k = 0; 13 int counter = 2; 14 for (; true;) { 15 k = i + j; 16 counter++; 17 System.out.println(k); 18 if (counter == 10) { 19 return; 20 } 21 22 i = j; 23 j = k; 24 } 25 26 } 27 }
转载于:https://www.cnblogs.com/outOfview/p/3866739.html