码迷,mamicode.com
首页 > 其他好文 > 详细

杨辉三角

时间:2017-07-27 23:35:44      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:pac   for   dem   string   system   pre   static   pack   main   

 1 package com.llh.demo;
 2 
 3 /**
 4  * 杨辉三角
 5  * 
 6  * @author llh
 7  *
 8  */
 9 public class Test {
10     /*
11      * 杨辉三角
12      */
13     public static void main(String[] args) {
14         int[] a = new int[11];
15         int num = 1;
16         //
17         for (int i = 1; i <= 10; i++) {
18             for (int j = 1; j <= i; j++) {
19                 int c = a[j];
20                 a[j] = num + c;
21                 num = c;
22                 System.out.print(a[j] + " ");
23             }
24             System.out.println();
25         }
26     }
27 
28 }

 

杨辉三角

标签:pac   for   dem   string   system   pre   static   pack   main   

原文地址:http://www.cnblogs.com/javallh/p/7247895.html

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