Algorithm 배열의 합

배열의 합

algo

배열의 합을 구하여라

  • 배열은 각자 같은 위치의 값끼리 더한다.
  • 어떤 배열을 입력하여도 적용되게만들어라.
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("틀렸습니다. 수정하는게 좋겠어요");
}
}
}

Share