Algorithm/PROGRAMMERS[Java]57 Lv1. 직사각형 별찍기 프로그래머스 사이트에서 Lv1중 가장 쉬운 문제 풀기! 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 = 0; i < m; i++){ for(int j = 0; j < n; j++{ System.out.print("*"); } System.out.println(); } } } 2021. 9. 9. 이전 1 ··· 12 13 14 15 다음