1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| package summatrix;
public class SumMatrix {
int[][] sumMatrix(int[][] A, int[][] B) { int[][] answer = new int[A.length][A[0].length];
for (int i = 0; i < answer.length; i++) { for(int j = 0; j < answer[i].length; j++) { answer[i][j] = A[i][j] + B[i][j]; } }
return answer; }
public static void main(String[] args) { SumMatrix c = new SumMatrix(); int[][] A = { { 1, 2 }, { 2, 3 } }; int[][] B = { { 3, 4 }, { 5, 6 } }; int[][] answer = c.sumMatrix(A, B); if (answer[0][0] == 4 && answer[0][1] == 6 && answer[1][0] == 7 && answer[1][1] == 9) { System.out.println("맞았습니다. 제출을 눌러 보세요"); } else { System.out.println("틀렸습니다. 수정하는게 좋겠어요"); } } }
|