작성일 :

문제 링크

2438번 - 별 찍기 - 1

설명

1 번째 줄부터 n 번째 줄까지, 각 줄에 문자 * 을 출력하는 문제입니다.

각 줄에 출력해야하는 * 의 개수는 줄의 행 번호와 일치합니다.


Code

[ C# ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Solution {
  class Program {
    static void Main(string[] args) {

      var n = int.Parse(Console.ReadLine()!);

      for (int i = 0; i < n; i++) {
        for (int j = 0; j < i + 1; j++)
          Console.Write("*");
        Console.WriteLine();
      }

    }
  }
}



[ C++ ]

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

using namespace std;

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

  int n; cin >> n;

  for (int i = 0; i < n; i++) {
    for (int j = 0; j < i + 1; j++)
      cout << "*";
    cout << "\n";
  }

  return 0;
}