Advertisement
Fhernd

DeclaracionArreglos.cs

Jul 24th, 2017
4,922
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.67 KB | None | 0 0
  1. class DeclaracionArreglos
  2. {
  3.     static void Main()
  4.     {
  5.         // Arreglo de una dimensión
  6.         int[] numeros = new int[5];
  7.  
  8.         // Arreglo multidimensional
  9.         string[,] nombres = new string[5, 4];
  10.  
  11.         // Arreglo de arreglos (o dentados)
  12.         byte[][] puntajes = new byte[5][];
  13.  
  14.         // Crea el arreglo dentado
  15.         for (int i = 0; i < puntajes.Length; i++)
  16.         {
  17.             puntajes[i] = new byte[i + 3];
  18.         }
  19.  
  20.         // Imprime la longitud de cada arreglo
  21.         for (int i = 0; i < puntajes.Length; i++)
  22.         {
  23.             Console.WriteLine("La longitud de la fila {0} is {1}", i, puntajes[i].Length);
  24.         }
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement