Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

my program doesn't print out to be a pyramid. I am lost, have been trying this program for 5 days. How big of a pyramid

my program doesn't print out to be a pyramid. I am lost, have been trying this program for 5 days.

How big of a pyramid you want?3

*

* *

* * *

import java.util.Scanner;

public class Pyramidissue {

public static void main(String[] args) {

Scanner input = new Scanner(System.in);

System.out.print("How big of a pyramid you want?");

int n = input.nextInt();

{

for (int i=0; i

{

for (int j=n-i; j>0; j--)

{

System.out.print("");

}

for(int j=0; j<=i; j++ )

System.out.print(" *");

System.out.println();

}

}

}

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Dental Assisting

Authors: Doni Bird, Debbie Robinson

13th Edition

978-0323624855, 0323624855

Students also viewed these Programming questions