Advertisement
jorro_bs

Untitled

Feb 19th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Square
  4. {
  5.   public static void main(String[] args)
  6.   {
  7.     Scanner scan = new Scanner(System.in);
  8.  
  9.     int size = Integer.parseInt(scan.nextLine());
  10.  
  11.     for (int i = 0; i < size; i++)
  12.     {
  13.       for (int j = 0; j < size; j++) {
  14.         System.out.print(" * ");
  15.       }
  16.       System.out.println();
  17.     }
  18.   }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement