티스토리 뷰

프로그래머스 12969번 - 직사각형 별찍기

프로그래머스 12969번 - https://programmers.co.kr/learn/courses/30/lessons/12969

 

요구사항

1. 별(*) 문자를 이용해 가로의 길이가 n, 세로의 길이가 m인 직사각형 형태를 출력해보세요.

 

요구사항 분석 및  풀이과정

1. 한 줄당 별(*) 문자를 n개 출력 후, 줄 바꿈을 한다.

2. 1의 작업을 m번 반복한다.

 

소스코드 작성

import java.util.Scanner;

class Solution {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();

        for(int row = 0; row < m; row++) {
            for(int col = 0; col < n; col++) {
                System.out.print("*");
            }

            System.out.println();
        }
    }
}

 

결과

 

소스코드 깃허브 주소

링크

공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
글 보관함