본문 바로가기

Backend/Algorithm

33. 2중 반복문 - 직사각형 별찍기

 

 

 

 

 

코드

 

import java.util.Scanner;

public class Solution {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        
        for(int i=1; i<=m; i++) {
		    for(int j=1; j<=n; j++) {
			    System.out.print("*");
			}
			System.out.println();
		}
    
    }
}

 

 

 

 

 

접근방법