Advertisement
-AlexSesorov-

Untitled

Aug 21st, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. class Program
  2. {
  3. static void Main(string[] args)
  4. {
  5. int[,] array = {{ 25, 51 }, { 60, 3431 }, { 438, 941 }, { 37, 471 }};
  6. Sum(array);
  7. }
  8.  
  9. static void Sum(int[,] array)
  10. {
  11. for(int i = 0; i < array.GetLength(0); i++)
  12. {
  13. for(int j = 0; j < array.GetLength(1); j++)
  14. {
  15. Console.Write(array[i, j] + " ");
  16. }
  17. Console.WriteLine();
  18. }
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement