In this example, let’s see how to generate pyramid or triangle like given below with for loop.
* ** *** **** *****
Source Code
package com.beginner.examples;
public class PyramidExample1 {
public static void main(String[] args){
for(int m = 1; m<= 6 ; m ++)
{
for(int n = 0; n < m; n ++)
{
System.out.print("*");
}
//line feed
System.out.println("");
}
}
}
Output:
*
**
***
****
*****
******