Notice
Recent Posts
Recent Comments
Link
알고리즘 모음(C++)
백준 2738 - 행렬 덧셈(C++) 본문
문제 링크입니다. https://www.acmicpc.net/problem/2738
배열을 이용한 간단한 문제입니다.
2차원 배열 2개를 이용해 행렬을 입력 받은 뒤, 합을 출력하는 간단한 문제입니다.
자세한 것은 코드를 참고해주세요
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <vector>
#include <queue>
#include <cstring>
#include <string>
using namespace std;
int N, M;
int arr[101][101], arr2[101][101];
int main() {
cin.tie(0);
cout.tie(0);
cin >> N >> M;
for(int i = 0; i < N; i++){
for(int j = 0; j < M; j++){
cin >> arr[i][j];
}
}
for(int i = 0; i < N; i++){
for(int j = 0; j < M; j++){
cin >> arr2[i][j];
}
}
for(int i = 0; i < N; i++){
for(int j = 0; j < M; j++){
cout << arr[i][j] + arr2[i][j] << " ";
}
cout << "\n";
}
return 0;
}
질문 및 조언은 댓글을 남겨주세요
'백준' 카테고리의 다른 글
백준 17481 - 최애 정하기(C++) (0) | 2023.02.17 |
---|---|
백준 14939 - 불 끄기(C++) (3) | 2023.02.17 |
백준 2744 - 대소문자 바꾸기(C++) (0) | 2023.02.13 |
백준 1298 - 노트북의 주인을 찾아서(C++) (0) | 2023.02.13 |
백준 9576 - 책 나눠주기(C++) (0) | 2023.02.11 |