码迷,mamicode.com
首页 > 编程语言 > 详细

Java-数组练习5

时间:2016-09-17 19:04:43      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

5.从键盘上输入一个正整数n,请按照以下五行杨辉三角形的显示方式,

输出杨辉三角形的前n行。请采用循环控制语句来实现。

(三角形腰上的数为1,其他位置的数为其上一行相邻两个数之和。)

1

1   1

1   2   1

1   3   3   1

1   4   6   4   1

1   5   10  10  5  1

 

Scanner sc=new Scanner(System.in);

      System.out.println("输入一个数打印杨辉三角:");

      int t=sc.nextInt();

       int[][] array = new int[t][t];

           for(int i=0;i<array.length;i++)

           {

               for(int j=0;j<=i;j++){

                   if(j==0 || j==i){

                       array[i][j]=1;

                   }

                   else

                   {

                       array[i][j]=array[i-1][j-1]+array[i-1][j];

                   }

                 System.out.print(array[i][j]+" ");

              

               }

               System.out.println();

     

           }

Java-数组练习5

标签:

原文地址:http://www.cnblogs.com/tfl-511/p/5879261.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!