How to Print Pyramid 2 in Java


In this example,we will learn how to generate pyramid or triangle like given below with for loop.

***** **** *** ** *

Source Code

package com.beginner.examples;

public class PyramidExample2 {

    public static void main(String[] args){
    	
    	for(int m = 6; m> 0 ; m --)
    	{
			for(int n = 0; n < m; n ++)
			{
				System.out.print("*");
			}
			//line feed
			System.out.println("");
		}
    }
}

Output:

******
*****
****
***
**
*
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments