Advertisement
Spocoman

09. House

Aug 31st, 2024
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.99 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class House {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.         int n = Integer.parseInt(scanner.nextLine());
  7.         for (int i = 1; i <= (n + 1) / 2; i++) {
  8.             for (int j = 0; j < (n + 1) / 2 - i; j++) {
  9.                 System.out.print("-");
  10.             }
  11.             if (n % 2 == 1) {
  12.                 System.out.print("*");
  13.             } else {
  14.                 System.out.print("**");
  15.             }
  16.  
  17.             for (int k = 1; k < i; k++) {
  18.                 System.out.print("**");
  19.             }
  20.             for (int j = 0; j < (n + 1) / 2 - i; j++) {
  21.                 System.out.print("-");
  22.             }
  23.             System.out.println();
  24.         }
  25.  
  26.         for (int i = 0; i < n / 2; i++) {
  27.             System.out.print("|");
  28.             for (int x = 0; x < n - 2; x++) {
  29.                 System.out.print("*");
  30.             }
  31.             System.out.println("|");
  32.         }
  33.     }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement