🔒 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.

About this Thread

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

Trending Topics

Online now

Members online
745
Guests online
3,984
Total visitors
4,729

Forum statistics

Threads
2,326,634
Posts
29,230,384
Members
1,166,320
Latest member
Archange123
Back
Top