직사각형 별찍기 Lv. 1

박영준·2022년 11월 21일
0

코딩테스트

목록 보기
1/300
import java.util.Scanner;

class Solution {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();

        System.out.println(a + b);
    }
}

해결법

방법 1

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문 : 한 행(바깥 for문)에 여러개의 별표(안쪽 for문)가 찍히고,다음 행(바깥 for문)에 여러개의 별표(안쪽 for문)가 찍히고...
        for (int i = 0; i < m; i++) {
            for (int j = 0; j < n; j++) {
                //print() : 그냥 출력
                System.out.print("*");
            }
            //println() : 출력 + 행 바꿈
            System.out.println();
        }
    }
}

직사각형 별찍기 Lv. 1

profile
개발자로 거듭나기!

0개의 댓글