직사각형 별찍기
[프로그래머스,Level 1] 직사각형 별찍기(JAVA 구현)
- 첫 풀이 및 정답풀이 백준에서 많이 풀어본 별 찍기 문제로 간단하게 풀 수 있었다. import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); // 가로 int b = sc.nextInt(); // 세로 // 행의 수 반복 for(int i=0;i