zoukankan      html  css  js  c++  java
  • 杨辉三角形实现

    //打印杨辉三角形。
    import java.util.Scanner;
    public class Yanghui_Triangle{
          public static void main(String args[]){
               //输入行数
               Scanner scan= new Scanner(System.in);
               System.out.println("请输入杨辉三角形行数:");
               int row = scan.nextInt();
               int yanghui[][]= new int[row][];
               System.out.println("杨辉三角形");
              
               //配置二维数组
               for(int i=0;i<yanghui.length;i++){
                    yanghui[i]= new int[i+1];
                   }
                   
                   //计算杨辉三角形
                   for(int n=0;n<yanghui.length;n++){
                         for(int k=0;k<=n;k++){
                               if(k==0||k==n){
                                    yanghui[n][k]=1;
                                   }else{
                                       yanghui[n][k]=yanghui[n-1][k-1]+yanghui[n-1][k];
                                       }
                             }
                       }
                       
                       //输出杨辉三角形
                       for(int i=0;i<yanghui.length;i++){
                             System.out.print("第"+(i+1)+"行");
                             for(int j=0;j<yanghui[i].length;j++){
                                 System.out.print(yanghui[i][j]+" ");
                                 }
                                 System.out.println();
                           }      
              }
        }

  • 相关阅读:
    [LeetCode] Wildcard Matching, Solution
    [LeetCode] Add Binary 解题报告
    [LeetCode] Validate Binary Search Tree 解题报告
    [LeetCode] ZigZag Conversion 解题报告
    [LeetCode] Best Time to Buy and Sell Stock II Solution
    [LeetCode] Anagrams 解题报告
    [LeetCode] Word Search 解题报告
    【转载】git/github初级运用自如
    关于实训的那点事儿
    【转载】解决git Push时请求username和password,而不是sshkey验证
  • 原文地址:https://www.cnblogs.com/sophine/p/3527284.html
Copyright © 2011-2022 走看看