黑马程序员技术交流社区
标题:
求解
[打印本页]
作者:
╰_hEy_ゞ
时间:
2014-3-11 14:36
标题:
求解
本帖最后由 ╰_hEy_ゞ 于 2014-3-12 18:12 编辑
求解
QQ截图20140311143722.png
(2.05 KB, 下载次数: 19)
下载附件
2014-3-11 14:36 上传
作者:
.......
时间:
2014-3-11 19:00
import java.util.Stack;
public class Demo {
public static void main(String[] args) {
Stack st = new Stack();
int count = Integer.valueOf(args[0]).intValue();
int temp;
Integer first = new Integer(3);
Integer second = new Integer(8);
st.add(first);
st.add(second);
for (int i = 0; i < count - 2; i++) {
temp = first.intValue() + second.intValue();
st.add(new Integer(temp));
first = second;
second = new Integer(temp);
}
System.out.println("输出这个系列的前" + count + "个数:");
Object result[] = st.toArray();
int wanghang = 0;
for (int i = result.length - 1; i >= 0; i--) {
System.out.print(st.pop() + " ");
wanghang++;
if (wanghang % 5 == 0) {
System.out.println("\n");
}
}
}
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2