작성일 :

문제 링크

18883번 - N M 찍기

설명

반복문을 이용한 구현 문제입니다.

입력으로 주어지는 n, m과 출력해야 하는 숫자들의 행과 열의 관계를 연관지어 풀이합니다.


Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  #include <bits/stdc++.h>
  using namespace std;

  int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  int n, m; cin >> n >> m;

  int cnt = 1;
  for (int i = 0; i < n; i++) {
    for (int j = 0; j < m; j++) {
      cout << cnt;
      cnt++;
      if (j == (m - 1)) cout << "\n";
      else cout << " ";
    }
  }

  return 0;
}