반응형
- 첫 풀이 및 정답풀이
백준에서 많이 풀어본 별 찍기 문제로 간단하게 풀 수 있었다.
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();
}
}
}
반응형