elena1234

JaggedArray-create and iterate

Dec 16th, 2020 (edited)
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.67 KB | None | 0 0
  1. using System;
  2.  
  3. namespace JaggedArray
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int[][] jaggedArray =
  10.              {
  11.                 new int [] {1,2},
  12.                 new int [] {3,4,5,6},
  13.                 new int[] {7,6,7,90,11,12,},
  14.                 new int[] {1,2,3,8,5,9,7,6,3,4,8},
  15.             };
  16.  
  17.             for (int row = 0; row < jaggedArray.Length; row++)
  18.             {
  19.                 for (int col = 0; col < jaggedArray[row].Length; col++)
  20.                 {
  21.                     Console.Write(jaggedArray[row][col] + " ");
  22.                 }
  23.  
  24.                 Console.WriteLine();
  25.             }
  26.         }
  27.     }
  28. }
Add Comment
Please, Sign In to add comment