문제
접근
주어지는 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;
}