[문제 링크] : https://www.acmicpc.net/problem/15232
#include <iostream>
using namespace std;
int main(){
int R, C;
cin >> R >> C;
for(int i=0; i<R; i++){
for(int j=0; j<C; j++){
cout << "*";
}
cout << "\n";
}
return 0;
}
'알고리즘' 카테고리의 다른 글
[알고리즘] 백준 11944 - NN (C++) (0) | 2024.11.23 |
---|---|
[알고리즘] 백준 2774 - 아름다운 수 (C++) (0) | 2024.11.22 |
[알고리즘] 백준 2863 - 이게 분수? (C++) (0) | 2024.11.20 |
[알고리즘] 백준 11282 - 한글 (C++) (0) | 2024.11.19 |
[알고리즘] 백준 10409 - 서버 (C++) (0) | 2024.11.18 |