lolblach333

Untitled

Jun 20th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. static void Main(string[] args)
  2. {
  3. int[,] array = { { 5, 6, 6, 7, 8 }, { 1, 5, 6, 7, 5 }, { 1, 3, 4, 5, 6 }, { 1, 4, 56, 5, 90 }, };
  4.  
  5. for (int i = 0; i < array.GetLength(0); i++)
  6. {
  7. for (int j = 0; j < array.GetLength(1); j++)
  8. {
  9. Console.Write(array[i, j] + " ");
  10. }
  11. Console.WriteLine();
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment