HDOJ 2032 杨辉三角
【摘要】 Problem Description 还记得中学时候学过的杨辉三角吗?具体的定义这里不再描述,你可以参考以下的图形: 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1
Input 输入数据包含多个测试实例,每个测试实例的输入只包含一个正整数n(1<=n<=30),表示将要输出的杨辉三角的层数。
Output ...
Problem Description
还记得中学时候学过的杨辉三角吗?具体的定义这里不再描述,你可以参考以下的图形:
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1
Input
输入数据包含多个测试实例,每个测试实例的输入只包含一个正整数n(1<=n<=30),表示将要输出的杨辉三角的层数。
Output
对应于每一个输入,请输出相应层数的杨辉三角,每一层的整数之间用一个空格隔开,每一个杨辉三角后面加一个空行。
Sample Input
2 3
Sample Output
1
1 1
1
1 1
1 2 1
import java.util.Scanner;
public class Main { static int[][] pt= new int[31][]; public static void main(String[] args) { pt(); Scanner sc = new Scanner(System.in); while(sc.hasNext()){ int n= sc.nextInt(); topt(n); System.out.println(); } } private static void topt(int n) { for(int i=1;i<=n;i++){ System.out.print(pt[i][1]); for(int j=2;j<=i;j++){ System.out.print(" "+ pt[i][j]); } System.out.println(); } } private static void pt() { for(int i=1;i<=30;i++){ pt[i] = new int[i+1]; pt[i][i]=1; pt[i][1]=1; } for(int i=3;i<=30;i++){ for(int j=2;j<i;j++){ pt[i][j]=pt[i-1][j-1]+pt[i-1][j]; } }
// for(int i=1;i<=30;i++){
// for(int j=1;j<=i;j++){
// System.out.print(pt[i][j]+" ");
// }
// System.out.println();
// } }
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
文章来源: chenhx.blog.csdn.net,作者:谙忆,版权归原作者所有,如需转载,请联系作者。
原文链接:chenhx.blog.csdn.net/article/details/50563682
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)