zoukankan      html  css  js  c++  java
  • Java实现输出“杨辉三角”

    import java.util.Scanner;
    
    public class SumTrangles {
        public static void func(int n) {
            if (n < 0) return;
            int[][] a = new int[n][n];
            for (int i = 0;i < n;i++) {
                if (i == 0) {
                    a[i][0] = 1;
                    System.out.print(1);
                }
                for (int j = 0;j < i;j++) {
                    if (j == 0 || j == n - 1) {
                        a[i][j] = 1;
                    } else {
                        a[i][j] = a[i - 1][j - 1] + a[i - 1][j];
                    }
                    System.out.print(a[i][j] + " ");
                }
                System.out.println();
            }
        }
        public static void main(String[] args) {
            System.out.println("Enter the number:");
            Scanner sc = new Scanner(System.in);
            int n = sc.nextInt();
            func(n);
        }
    }
    
    I can
  • 相关阅读:
    树状数组简述
    八皇后
    小木棍
    智力大冲浪
    晚餐队列安排
    修理牛棚
    转圈游戏
    关押罪犯
    借教室
    跳石头
  • 原文地址:https://www.cnblogs.com/leonwen/p/10479756.html
Copyright © 2011-2022 走看看