🔒 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
  • 622
    Views
  • 2
    Participants
Last reply from:
Path_Finder

Trending Topics

Online now

Members online
1,151
Guests online
2,189
Total visitors
3,340

Forum statistics

Threads
2,292,453
Posts
29,077,172
Members
1,209,360
Latest member
iyaiyaiyayow
Back
Top