Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.company;
- public class Lesson7HW4 {
- public static void main(String args[]) {
- int height = 10;
- for (int i = 0; i < height; i++) {
- for (int k = 1; k < height - i; k++) {
- System.out.print(" ");
- }
- for (int j = 1; j <= i * 2 + 1; j++) {
- System.out.print("*");
- }
- if (i != height - 1) {
- System.out.println();
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment