이 문제에는 표준 입력으로 두 개의 정수 n
과 m
이 주어집니다.
별(*)
문자를 이용해 가로의 길이가 n
, 세로의 길이가 m
인 직사각형 형태를 출력해보세요.
n
과 m
은 각각 1000 이하인 자연수
입니다.입력
5 3
출력
*****
*****
*****
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int m = sc.nextInt();
n
행 m
열을 입력받는다.
for ( int i = 1; i <= m; i++) {
for ( int j = 1; j <= n; j++) {
System.out.print("*");
}
System.out.println();
}
첫 번째 for문
은 열
을 뜻합니다.
두 번째 for문
은 행
을 뜻합니다.
j~n
까지 *
을 찍고 줄바꿈을 한 뒤 i
가 증가됩니다.
import java.util.Scanner;
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();
}
}
}