打印出杨辉三角形(要求打印出10行如下图) 10

1.程序分析:11112113311464115101051... 1.程序分析:
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1
展开
 我来答
Irreappearable
2010-02-07 · TA获得超过4956个赞
知道大有可为答主
回答量:1423
采纳率:25%
帮助的人:3134万
展开全部
public class Test {

public static void main(String[] args){

int n = 10;
int[] last = new int[n];
for (int i = 0; i < n; ++i)
last[i] = 1;
int[] current = last.clone();
System.out.print("1\n1 1\n");

for (int i = 3; i <= n; ++i) {
for (int j = 1; j < i - 1; ++j) {
current[j] = last[j] + last[j - 1];
}
print(current, i);

int[] t = current;
current = last;
last = t;
}

}

static void print(int[] array, int n) {
for (int i = 0; i < n; ++i)
System.out.print(array[i] + " ");
System.out.println();
}

}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式