반응형
프로그래머스 - 직사각형 별찍기
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("");
}
}
}
https://programmers.co.kr/learn/courses/30/lessons/12969
반응형
'알고리즘 > 프로그래머스' 카테고리의 다른 글
행렬의 덧셈 (0) | 2021.05.28 |
---|---|
x만큼 간격이 있는 n개의 숫자 (0) | 2021.05.28 |