코드
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int m = sc.nextInt();
for(int i=1; i<=m; i++) {
for(int j=1; j<=n; j++) {
System.out.print("*");
}
System.out.println();
}
}
}
접근방법
'Backend > Algorithm' 카테고리의 다른 글
35. toUpper/LowerCase - 이상한 문자 만들기 (0) | 2020.12.03 |
---|---|
34. for, if - 예산 (0) | 2020.11.30 |
32. long - x만큼 간격이 있는 n개의 숫자 (0) | 2020.11.23 |
31. ascii code, Character - 문자열 내림차순으로 배치하기 (0) | 2020.11.21 |
30. substring - 핸드폰 번호 가리기 (0) | 2020.11.20 |