Computer Science, asked by anupkamath2006, 2 months ago

Write a program to print the pattern

# # # # #

# #

# #

# #

# # # # #

Answers

Answered by Royalleajents
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