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

Java使用for()循环输出杨辉三角

时间:2016-08-13 15:31:04      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

 1 package com.yzy.test;
 2 
 3 public class Test {
 4 
 5     /**
 6      * @param args
 7      */
 8     public static void main(String[] args) {
 9         int[][] array = new int[10][];
10         for (int i = 0; i < array.length; i++) {
11             array[i] = new int[i + 1];
12             for (int j = 0; j <= i; j++) {
13                 if (i == 0 || j == 0 || i == j) {
14                     array[i][j] = 1;
15                 } else {
16                     array[i][j] = array[i - 1][j - 1] + array[i - 1][j];
17                 }
18             }
19 
20         }
21         
22         for (int[] is : array) {
23             for (int i : is) {
24                 System.out.print(i + " ");
25             }
26             System.out.println();
27         }
28     }
29 }

运行结果:

技术分享

Java使用for()循环输出杨辉三角

标签:

原文地址:http://www.cnblogs.com/yzyqqhr/p/5767991.html

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