91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

怎么用java輸出等腰楊輝三角

小億
95
2024-04-26 16:40:46
欄目: 編程語言

下面是一個用Java輸出等腰楊輝三角的示例代碼:

import java.util.Scanner;

public class YangHuiTriangle {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        System.out.print("請輸入楊輝三角的行數:");
        int numRows = scanner.nextInt();

        int[][] triangle = new int[numRows][];

        for (int i = 0; i < numRows; i++) {
            triangle[i] = new int[i + 1];
            triangle[i][0] = 1;
            triangle[i][i] = 1;

            for (int j = 1; j < i; j++) {
                triangle[i][j] = triangle[i - 1][j - 1] + triangle[i - 1][j];
            }
        }

        for (int i = 0; i < numRows; i++) {
            for (int j = 0; j < numRows - i - 1; j++) {
                System.out.print(" ");
            }
            for (int j = 0; j <= i; j++) {
                System.out.print(triangle[i][j] + " ");
            }
            System.out.println();
        }
    }
}

運行這個代碼,輸入要輸出的楊輝三角的行數,程序會輸出相應行數的等腰楊輝三角形狀。

0
湟中县| 安福县| 屯昌县| 阿拉善左旗| 永兴县| 福州市| 交城县| 天津市| 伊吾县| 池州市| 类乌齐县| 辽中县| 腾冲县| 冀州市| 南江县| 寻甸| 平潭县| 永州市| 临夏县| 溧阳市| 远安县| 博罗县| 洛南县| 芦山县| 安龙县| 嘉禾县| 瑞昌市| 宁都县| 三河市| 格尔木市| 瓮安县| 南安市| 永城市| 平山县| 永宁县| 南木林县| 金溪县| 阳原县| 娱乐| 镇赉县| 沐川县|