Skip to content
Programmingoneonone
Programmingoneonone
  • CS Subjects
    • Internet of Things (IoT)
    • Digital Communication
    • Human Values
    • Cybersecurity
  • Programming Tutorials
    • C Programming
    • Data structures and Algorithms
    • 100+ Java Programs
    • 100+ C Programs
  • HackerRank Solutions
    • HackerRank Algorithms Solutions
    • HackerRank C problems solutions
    • HackerRank C++ problems solutions
    • HackerRank Java problems solutions
    • HackerRank Python problems solutions
Programmingoneonone
Programmingoneonone

Java program to print star pattern in reverse pyramid shape

YASH PAL, 31 July 2024

In this tutorial, we are going to write a Java program to print a star pattern in a reverse pyramid shape in java Programming with practical program code and step-by-step full complete explanation.

Java program to print star pattern in reverse pyramid shape

Java program to print star a pattern in a reverse pyramid shape.

 
class Pattern6
{
	public static void main(String args[])
	{
		int sp=20;
		for(int i=5;i>=1;i--)
		{
			for(int k=5;k<=sp;k++)
			{
				System.out.print(" ");
			}
			sp++;
			for(int j=1;j<=i;j++)
			{
				System.out.print("* ");
			}
			System.out.println();
		}
	}
}

Output

 
                * * * * * 
                 * * * * 
                  * * * 
                   * * 
                    *
coding problems solutions

Post navigation

Previous post
Next post
CLOSE ADS
CLOSE ADS

Pages

  • About US
  • Contact US
  • Privacy Policy

Follow US

  • YouTube
  • LinkedIn
  • Facebook
  • Pinterest
  • Instagram
©2026 Programmingoneonone | WordPress Theme by SuperbThemes