java编写杨辉三角

 我来答
flyingFish211
2011-04-12 · TA获得超过2.1万个赞
知道大有可为答主
回答量:1.5万
采纳率:50%
帮助的人:1.1亿
展开全部
import java.util.Scanner;

public class PascalTriangle {

public static void main(String[] args) {

System.out.print("Please input a digit for pascal triangle: ");

Scanner scanner = new Scanner(System.in);

final int num = scanner.nextInt();

int[][] ary = getPascalTriangle(num);

for(int[] item: ary){
for(int value: item){
System.out.print((value > 0? value: "") + " ");
}
System.out.println();
}

}

private static int[][] getPascalTriangle(final int num) {
int[][] ary = new int[num][num];

for(int i = 0; i < ary.length; i++){
ary[i][0] = 1;
ary[i][i] = 1;
}

for(int i = 1; i < ary.length; i++){
for(int j = 1; j <= i; j++){
ary[i][j] = ary[i-1][j-1] + ary[i-1][j];
}
}
return ary;
}
}
-----------------
Please input a digit for pascal triangle: 7
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1
1 6 15 20 15 6 1

参考资料: http://zhidao.baidu.com/question/248766934.html

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式