728x90
https://school.programmers.co.kr/learn/courses/30/lessons/12969
728x90
메모리: 70.6 MB, 시간: 238.04 ms
사용 알고리즘: 구현
import java.io.*;
import java.util.*;
class Solution {
public static void main(String[] args) throws Exception{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int n = Integer.parseInt(st.nextToken());
int m = Integer.parseInt(st.nextToken());
StringBuilder answer = new StringBuilder();
for(int i = 0; i < m; i++) {
for(int j = 0; j < n; j++) {
answer.append("*");
}
answer.append("\n");
}
System.out.print(answer);
}
}
728x90
'Problem Solving > Programmers' 카테고리의 다른 글
[프로그래머스, 12935] 제일 작은 수 제거하기 (java) (0) | 2025.01.21 |
---|---|
[프로그래머스, 12915] 문자열 내 마음대로 정렬하기 (java) (0) | 2025.01.21 |
[프로그래머스, 142086] 가장 가까운 같은 글자 (java) (0) | 2025.01.21 |
[프로그래머스, 12910] 나누어 떨어지는 숫자 배열 (java) (0) | 2025.01.21 |
[프로그래머스, 12940] 최대공약수와 최소공배수 (java) (0) | 2025.01.21 |