Write a program to print the pattern
# # # # #
# #
# #
# #
# # # # #
Answers
Answered by
1
Answer:
2. Left Triangle Star Pattern
public class LeftTrianglePattern.
{
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 work for rows.
Similar questions