- [백준] - 2738 - 행렬 덧셈 2023.11.02
2023. 11. 2. 18:14
Arrays.Stream으로 이차원 배열 출력하는 방법 정도는 기억해두면 좋을 것 같다.
package org.example;
import java.io.IOException;
import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
int M = sc.nextInt();
int [][] matrix1 = new int[N][M];
int [][] matrix2 = new int[N][M];
int [][] result = new int[N][M];
for(int i = 0; i < N; i++){
for(int j = 0; j < M; j++){
matrix1[i][j] = sc.nextInt();
}
}
for(int i = 0; i < N; i++){
for(int j = 0; j < M; j++){
matrix2[i][j] = sc.nextInt();
}
}
for(int i = 0; i < N; i++){
for(int j = 0; j < M; j++){
result[i][j] = matrix1[i][j] + matrix2[i][j];
}
}
Arrays.stream(result).forEach(row -> {
Arrays.stream(row).forEach(value -> {
System.out.print(value + " ");
});
System.out.println();
});
}
}
'AREA(지속적인 일상) > 02_백준' 카테고리의 다른 글
[백준] - 25206 - 너의 평점은 (1) | 2023.11.02 |
---|---|
[백준] - 2941 - 크로아티아 알파벳 (0) | 2023.11.01 |
[백준] - 1157 - 단어공부 (0) | 2023.10.31 |
[백준] - 10988 - 팰린드롬인지 확인하기 (0) | 2023.10.31 |
[백준] - 3003 - 킹, 퀸, 룩, 비숍, 나이트, 폰 (0) | 2023.10.30 |