본문 바로가기

Programmers/Level1

직사각형 별찍기

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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();
        }
    }
}
cs

'Programmers > Level1' 카테고리의 다른 글

문자열 내림차순으로 배치하기  (0) 2021.07.06
문자열 다루기 기본  (0) 2021.07.06
이상한 문자 만들기  (0) 2021.07.06
짝수와 홀수  (0) 2021.07.06
자릿수 더하기  (0) 2021.07.06