基础练习 杨辉三角形

Posted Luking

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基础练习 杨辉三角形相关的知识,希望对你有一定的参考价值。

-----------------------------------------------------------

-----------------------------------------------------------

算法

 1 import java.util.*;
 2 public class Main {
 3     public static void main(String[] args) {
 4         int n = new Scanner(System.in).nextInt();
 5         int[] a = null;
 6         System.out.println(1);
 7         for(int i=2;i<=n;i++){
 8             int[] s = new int[i];
 9             s[0] =s[i-1] = 1;
10             System.out.print("1 ");
11             for(int j=1;j<=i-2;j++){
12                 s[j] = a[j-1]+a[j];
13                 System.out.print(s[j]+" ");
14             }
15             System.out.println("1");
16             a = s;
17         }
18     }
19 }

 

 

 

 

 

 

以上是关于基础练习 杨辉三角形的主要内容,如果未能解决你的问题,请参考以下文章

基础练习-6.杨辉三角形

基础练习 杨辉三角形

蓝桥杯- 基础练习:杨辉三角形

Java蓝桥杯--基础练习杨辉三角形

杨辉三角形

杨辉三角形 递归与非递归