Advertisement
Spocoman

10. Diamond

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