長方形で撮影


Level 1



星印の問題を何度かやれば解決できる簡単な問題です.
  • 私の答え
  • import java.util.Scanner;
    
    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("");
            }
        }
    }
    他の人の解答を見て、やはり多くstreamで問題を解きます.
    白俊問題をするたびにそう感じますが、やはりStreamを勉強したいと思います.ㄱ-…