링크 : https://programmers.co.kr/learn/courses/30/lessons/12969
import java.util.Scanner;
import java.util.stream.IntStream;
class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
IntStream.range(0, b)
.forEach(f->{
IntStream.range(0, a)
.forEach(s-> System.out.print("*"));
System.out.println("");
});
}
}
'교육 > 코테' 카테고리의 다른 글
[프로그래머스]JAVA 행렬 테두리 회전하기 (0) | 2022.06.30 |
---|---|
[프로그래머스]JAVA 로또의 최고 순위와 최저 순위 (0) | 2022.06.29 |
[프로그래머스]JAVA x만큼 간격이 있는 n개의 숫자 (0) | 2022.06.29 |
[프로그래머스]JAVA 행렬의 덧셈 (0) | 2022.06.29 |
[프로그래머스]JAVA 핸드폰 번호 가리기 (0) | 2022.06.29 |