본문 바로가기
알고리즘/프로그래머스 1단계

[프로그래머스] 직사각형 별찍기

by lanuarius19 2022. 4. 24.
728x90

 

프로그래머스 1단계
직사각형 별찍기

https://programmers.co.kr/learn/challenges

 

문제 설명

 

직사각형 별찍기

 

 

 

풀이

 

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<b; i++) {
            for(int j = 0; j<a; j++) {
                System.out.print("*");
            }
            System.out.println("");
        }
    }
}
 
728x90

댓글