👀 문제
https://programmers.co.kr/learn/courses/30/lessons/12969
👊 도전
1. 설계
- 가로 길이, 세로 길이에 맞는 직사각형을 출력한다.
2. 구현 (성공 코드)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
*
* @author HEESOO
*
*/
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();
//System.out.println(a + b);
for(int i=0;i<b;i++){
for(int j=0;j<a;j++){
System.out.print("*");
}
System.out.println();
}
}
}
3. 결과
🤟 성공 🤟
4. 설명
👏 해결 완료!
쉽다.