-
프로그래머스 level 1 > 직사각형 별찍기프로그래머스(Programmers) 2018. 7. 3. 19:21반응형
https://programmers.co.kr/learn/courses/30/lessons/12969
1. 문제
출력 문제
2. 알고리즘
키워드 - 구현
3. 코드
1234567891011121314151617#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;}cs 4.Output
123***************cs 반응형'프로그래머스(Programmers)' 카테고리의 다른 글
프로그래머스 Level 3 > 2 x n 타일링 (0) 2018.07.03 프로그래머스 Level1 > 시저 암호 (0) 2018.07.03 프로그래머스 Level2 > 숫자의 표현 (0) 2018.07.03 프로그래머스 Level3 > 거스름 돈 (0) 2018.06.23 프로그래머스 Level1 > x만큼 간격이 있는 n개의 숫자 (0) 2018.06.14