Program to display full pyramid using *
Program to display full pyramid using *:
Program:
public class Pyramid
{
public static void main(String[] args)
{
for(int i = 1; i <= 5; i++)
{
for(int j = 1; j <= (5 - i); j++)
{
System.out.print(" ");
}
for(int j = 1; j <= ((2*i) - 1); j++)
{
System.out.print("*");
}
System.out.println();
}
}
}
Output:
*
***
*****
*******
*********
Program:
public class Pyramid
{
public static void main(String[] args)
{
for(int i = 1; i <= 5; i++)
{
for(int j = 1; j <= (5 - i); j++)
{
System.out.print(" ");
}
for(int j = 1; j <= ((2*i) - 1); j++)
{
System.out.print("*");
}
System.out.println();
}
}
}
Output:
*
***
*****
*******
*********
Comments
Post a Comment