Computer Science, asked by yashodagupta68362, 3 days ago

to display the following pattern based on value of n

#@#@#
#@#@
#@#
#@
#

Answers

Answered by JBJ919
2

Answer:

public class forbrainly

{

   public static void main ()

   {

       int i,j;

       for (i=5;i>=1;i--)

       {

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

           {

               if (j%2==0)

               {

                   System.out.print("@ ");

               }

               else  

               System.out.print("# ");

           }

           System.out.println();

       }

   }

}

Explanation:

Similar questions