Advertisement
Spocoman

Sublime Logo

Sep 9th, 2024
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.70 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Main {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.         int n = Integer.parseInt(scanner.nextLine()),
  7.                 spaces = 2 * n - 2, stars = 2;
  8.  
  9.         for (int row = 0; row < n; row++) {
  10.             System.out.println(" ".repeat(spaces) + "*".repeat(stars));
  11.             spaces -= 2;
  12.             stars += 2;
  13.         }
  14.  
  15.         spaces = 2;
  16.         stars = 2 * n - 2;
  17.  
  18.         for (int row = 0; row < 2; row++) {
  19.             System.out.println("*".repeat(stars) + " ".repeat(spaces));
  20.             spaces += 2;
  21.             stars -= 2;
  22.         }
  23.  
  24.         spaces = 2;
  25.         stars = 2 * n - 2;
  26.  
  27.         for (int row = 0; row < 2; row++) {
  28.             System.out.println("*".repeat(stars) + " ".repeat(spaces));
  29.             if (spaces > 0 && stars > 0) {
  30.                 spaces -= 2;
  31.                 stars += 2;
  32.             }
  33.         }
  34.  
  35.         spaces = 2;
  36.         stars = 2 * n - 2;
  37.  
  38.         for (int row = 0; row < 2; row++) {
  39.             System.out.println(" ".repeat(spaces) + "*".repeat(stars));
  40.             spaces += 2;
  41.             stars -= 2;
  42.         }
  43.  
  44.         spaces = 2;
  45.         stars = 2 * n - 2;
  46.  
  47.         for (int row = 0; row < 2; row++) {
  48.             System.out.println(" ".repeat(spaces) + "*".repeat(stars));
  49.             if (spaces > 0 && stars > 0) {
  50.                 spaces -= 2;
  51.                 stars += 2;
  52.             }
  53.         }
  54.  
  55.         spaces = 2;
  56.         stars = 2 * n - 2;
  57.  
  58.         for (int row = 0; row < n; row++) {
  59.             System.out.println("*".repeat(stars) + " ".repeat(spaces));
  60.             spaces += 2;
  61.             stars -= 2;
  62.         }
  63.     }
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement