fork(1) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int[,] matrizA = new int[2, 2];
  8. int[,] matrizB = new int[2, 2];
  9.  
  10. matrizA[0, 0] = 1;
  11. matrizA[0, 1] = 2;
  12. matrizA[1, 0] = 3;
  13. matrizA[1, 1] = 4;
  14.  
  15. matrizB[0, 0] = 1;
  16. matrizB[0, 1] = 2;
  17. matrizB[1, 0] = 3;
  18. matrizB[1, 1] = 4;
  19.  
  20. int[,] matrizC = Sum(matrizA, matrizB);
  21. View(matrizC);
  22. }
  23. public static int[,] Sum(int[,] a, int[,] b)
  24. {
  25. int[,] result = new int[a.Rank, a.Rank];
  26. for (int i = 0; i < a.Rank; i++)
  27. for (int j = 0; j < a.Rank; j++)
  28. result[i, j] = a[i, j] + b[i, j];
  29. return result;
  30. }
  31.  
  32. public static void View(int[,] a)
  33. {
  34. for (int i = 0; i < a.Rank; i++)
  35. {
  36. for (int j = 0; j < a.Rank; j++)
  37. System.Console.Write("{0} ", a[i, j]);
  38. System.Console.WriteLine();
  39. }
  40.  
  41. }
  42. }
Success #stdin #stdout 0s 131648KB
stdin
Standard input is empty
stdout
2 4 
6 8