Computer Science, asked by sayanidassneha, 9 months ago

Write a Java program to print
the series, (if n=4)
@ @ @ @
@ @ @
@ @
@

Answers

Answered by Anonymous
23

❀ REFER THE ATTACHMENT ❀

Attachments:
Answered by Anonymous
1

Explanation:

class Pattern

{

public static void main(String args[])

{

for(int i=4;i>=1;i--)

{

for(int j=1;j<=i;j++)

{

System.out.print("@");

}

System.out.println();

}

}

}

Attachments:
Similar questions