Notice
Recent Posts
Recent Comments
Link
bdfgdfg
[레벨1] 직사각형 별찍기 본문
반응형
#include <iostream>
using namespace std;
int main(void) {
int a;
int b;
cin >> a >> b;
for(int y = 0; y < b; ++y)
{
for(int x = 0; x < a; ++x)
cout << "*";
cout << endl;
}
return 0;
}
반응형
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[레벨1] 핸드폰 번호 가리기 (0) | 2021.08.18 |
---|---|
[레벨1] x만큼 간격이 있는 n개의 숫자 (0) | 2021.08.17 |
[레벨1] 문자열 다루기 기본 (0) | 2021.08.14 |
[레벨1] 행렬의 덧셈 (0) | 2021.08.13 |
[레벨1] 모의고사 (0) | 2021.08.12 |
Comments