2020-01-26 게시 됨2020-01-26 업데이트 됨Algorithm / Programmers몇 초안에 읽기 (약 57 단어)[프로그래머스] 직사각형 별 찍기이중 for문을 잘 이해하라! 12345678910111213141516import 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<b; i++){ for (int j=0; j<a; j++){ System.out.print("*"); } System.out.println(); } }}[프로그래머스] 직사각형 별 찍기https://msj0319.github.io/2020/01/26/프로그래머스-직사각형-별-찍기/AuthorMoonDoniPosted on2020-01-26Updated on2020-01-26Licensed under#알고리즘Algorithm프로그래머스