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

리트리버J

·

2020. 12. 20. 12:23

728x90

이 문제에는 표준 입력으로 두 개의 정수 n과 m이 주어집니다. 별(*) 문자를 이용해 가로의 길이가 n, 세로의 길이가 m인 직사각형 형태를 출력해보세요.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import java.util.Scanner;
 
public class Solution {
    public static void main(String[] args) {
        // Scanner객체를 통해 입력받는다,
        Scanner sc = new Scanner(System.in);
        // 두개의 숫자를 입력받음
        int a = sc.nextInt(); // 가로
        int b = sc.nextInt(); // 세로
        // 세로 만큼 먼저 반복문 시작
        for(int i = 0; i < b; i++){
            // 가로 길이만큼 print로 * 찍기
            for(int j = 0; j < a; j++){
                System.out.print("*");
            }
            // 가로 길이만큼 별 다 찍으면 개행
            System.out.println();
        }
    }
}
cs

출처: 프로그래머스 코딩 테스트 연습, https://programmers.co.kr/learn/challenges

728x90