풀이과정
가장 기본적인 별 찍기 문제이다.
#include <iostream>
using namespace std;
int main(void) {
int n, m;
cin >> n >> m;
for(int i = 0; i < m; i++){
for(int j = 0; j < n; j++){
cout << "*";
}
cout << "\n";
}
return 0;
}
'🍞 Algorithm > Programmers' 카테고리의 다른 글
[프로그래머스][Level1] 최대공약수와 최소공배수 c++ (0) | 2022.09.03 |
---|---|
[프로그래머스][Level1] 짝수와 홀수 c++ (0) | 2022.09.02 |
[프로그래머스][Level1] 제일 작은 수 제거하기 c++ (0) | 2022.09.02 |
[프로그래머스][Level1] 정수 제곱근 판별 c++ (0) | 2022.09.02 |
[프로그래머스][Level1] 정수 내림차순으로 배치하기 c++ (0) | 2022.09.02 |