Computer Science, asked by porkodilatha407, 4 months ago

write a java program to print a pattern like
* * * * *
* * * *
* * *
* *
*
* *
* * *
* * * *
* * * * *

Answers

Answered by pratanu2008
0

Answer:

public class RightTrianglePattern  

{  

public static void main(String args[])  

{  

//i for rows and j for columns      

//row denotes the number of rows you want to print  

int i, j, row=6;  

//outer loop for rows  

for(i=0; i<row; i++)  

{  

//inner loop for columns  

for(j=0; j<=i; j++)  

{  

//prints stars  

System.out.print("* ");  

}  

//throws the cursor in a new line after printing each line  

System.out.println();  

}  

}  

}  

Explanation:

Similar questions