using System;public class JaggedArray{ public static void Main() { int [][] x = new int [3][]; x[0] = new int [2]; x[1] = new int [4]; x[2] = new int [3]; Console.WriteLine("Enter the numbers for Jagged Array"); for(int i=0 ; i < x.Length ; i++) { for(int j=0 ; j < x[i].Length ; j++) { String str= Console.ReadLine(); int n=Int32.Parse(str); arr[i][j]=n; } } Console.WriteLine("Jagged Array Elemnts"); for(int i=0 ; i < x.Length ; i++) { for(int j=0 ; j < x[i].Length ; j++) { Console.Write(arr[i][j]+" "); } Console.WriteLine(""); } }}