🔒 Closed Generate a pyramid

Status
Not open for further replies.

Bhadz141

Grasshopper
public class Pyramid
{
/* Generate a Pyramid using * symbols */
public static void main(String[] args)
{
int n = 8; // number of rows

int indent = 3;
for (int i = 1; i <= n; i++)
{
for (int j = 0; j < ((n + indent) - i); j++)
System.out.print(" ");
for (int k = 1; k <= i; k++)
System.out.print("*");
for (int k = 1; k < i; k++)
System.out.print("*");
System.out.println();
}

System.out.println();
}
}
 
Status
Not open for further replies.

Similar threads

About this Thread

  • 1
    Replies
  • 616
    Views
  • 2
    Participants
Last reply from:
Path_Finder

Online now

Members online
390
Guests online
1,584
Total visitors
1,974

Forum statistics

Threads
2,275,513
Posts
28,963,776
Members
1,232,826
Latest member
Daniella
Back
Top