EChebanenko

Untitled

Sep 4th, 2020
1,338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.48 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class Lesson7HW4 {
  4.     public static void main(String args[]) {
  5.         int height = 10;
  6.  
  7.         for (int i = 0; i < height; i++) {
  8.             for (int k = 1; k < height - i; k++) {
  9.                 System.out.print(" ");
  10.             }
  11.             for (int j = 1; j <= i * 2 + 1; j++) {
  12.                 System.out.print("*");
  13.             }
  14.             if (i != height - 1) {
  15.                 System.out.println();
  16.             }
  17.         }
  18.     }
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment