Computer Science, asked by dream01, 4 hours ago

Write a program to display the pattern by using nested loop in java​

Attachments:

Answers

Answered by gursharanjali
0

Answer:

public class DownwardTrianglePattern.

{

public static void main(String[] args)

{

int rows=7;

//inner loop.

for (int i= rows-1; i>=0 ; i--)

{

Similar questions