https://www.acmicpc.net/problem/13752
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
StringBuilder sb = new StringBuilder();
for (int i = 0; i < N; i++) {
int k = Integer.parseInt(br.readLine());
sb.append("=".repeat(k)).append("\n");
}
System.out.println(sb);
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 10409 서버 (0) | 2022.12.06 |
---|---|
백준 11006 남욱이의 닭장 (0) | 2022.12.06 |
백준 16673 고려대학교에는 공식 와인이 있다 (0) | 2022.12.06 |
백준 10818 최소, 최대 (0) | 2022.03.03 |
백준 10951 A+B-4 (0) | 2022.03.02 |