Posts [알고리즘] 프로그래머스 - 직사각형 별찍기
Post
Cancel

[알고리즘] 프로그래머스 - 직사각형 별찍기


문제

직사각형 별찍기


접근

주어지는 n,m 만큼 별을 출력하면 된다.

코드

  • 파이썬 코드
1
2
3
4
a, b = map(int, input().strip().split(' '))
for i in range(b):
    s = "*"*a
    print(s)
  • C++ 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>

using namespace std;

int main(void) {
    int a;
    int b;
    cin >> a >> b;
    for(int i = 0; i<b; i++){
        for(int j = 0; j<a; j++){
            cout << "*";
        }
        cout << "\n";
    }
    return 0;
}


This post is licensed under CC BY 4.0 by the author.

[알고리즘] 프로그래머스 - 제일 작은 수 제거하기

[프로그래밍 언어] C++ - STL 정리