사생활 보호 설정
https://gamjia.tistory.com
Updated News
Mini Rooms
답글수 [0]
What Friends Say
한마디로 표현해봐~
1촌평 관리
12969번 직사각형 별찍기
GamJia 2023. 3. 15. 14:44
코딩테스트 연습 - Level 1 - 직사각형 별찍기
https://programmers.co.kr/learn/courses/30/lessons/12969
#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<<endl; } return 0; }