Advertisement
Spocoman

02. Pascal Triangle

Jan 23rd, 2022
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.85 KB | None | 0 0
  1. Peшение с двумерен масив(матрица):
  2.  
  3. using System;
  4.  
  5. namespace PascalTriangle
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             int num = int.Parse(Console.ReadLine());
  12.             int[][] triangle = new int[num][];
  13.  
  14.             for (int row = 0; row < num; row++)
  15.             {
  16.                 triangle[row] = new int[row + 1];
  17.                 triangle[row][0] = 1;
  18.                 triangle[row][triangle[row].Length - 1] = 1;
  19.  
  20.                 for (int col = 1; col < row; col++)
  21.                 {
  22.                     triangle[row][col] = triangle[row - 1][col - 1] + triangle[row - 1][col];
  23.                 }    
  24.             }
  25.  
  26.             foreach (var row in triangle)
  27.             {
  28.                 Console.WriteLine(string.Join(" ", row));
  29.             }
  30.         }
  31.     }
  32. }
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement