黑马程序员技术交流社区

标题: 求解 [打印本页]

作者: ╰_hEy_ゞ    时间: 2014-3-11 14:36
标题: 求解
本帖最后由 ╰_hEy_ゞ 于 2014-3-12 18:12 编辑

求解

QQ截图20140311143722.png (2.05 KB, 下载次数: 19)

QQ截图20140311143722.png

作者: .......    时间: 2014-3-11 19:00
  1. import java.util.Stack;

  2. public class Demo {

  3.         public static void main(String[] args) {

  4.                 Stack st = new Stack();
  5.                 int count = Integer.valueOf(args[0]).intValue();
  6.                 int temp;
  7.                 Integer first = new Integer(3);
  8.                 Integer second = new Integer(8);
  9.                 st.add(first);
  10.                 st.add(second);

  11.                 for (int i = 0; i < count - 2; i++) {
  12.                         temp = first.intValue() + second.intValue();
  13.                         st.add(new Integer(temp));
  14.                         first = second;
  15.                         second = new Integer(temp);
  16.                 }

  17.                 System.out.println("输出这个系列的前" + count + "个数:");

  18.                 Object result[] = st.toArray();
  19.                 int wanghang = 0;

  20.                 for (int i = result.length - 1; i >= 0; i--) {
  21.                         System.out.print(st.pop() + "    ");
  22.                         wanghang++;
  23.                         if (wanghang % 5 == 0) {
  24.                                 System.out.println("\n");
  25.                         }
  26.                 }
  27.         }
  28. }
复制代码





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2