Computer Science, asked by namitkharade416, 1 year ago

Write a program to reverse the elements of a given 2*2 array. Four integer numbers needs to be passed as command line arguments.

Answers

Answered by gurukulamdivya
8

Answer:

public class Reverse_array

{

   public static void main(String args[])

   {

   int a=args.length;

   int x,y,w,z,i;

   int arr[][] = new int[4][4];

   if(a<4)

   {

   System.out.println("enter 4 values");

   }

   if(a==4)

       

   {

       int k=0;

   for(i=0;i<2;i++)

   {

       for(int j=0;j<2;j++)

       {

       arr[i][j]=Integer.parseInt(args[k]);

       k++;

       }

   }

   System.out.println("The given array is:");

   for(i=0;i<2;i++)

   {

       for(int j=0;j<2;j++)

       {

       System.out.print(arr[i][j]+" ");

       }

       System.out.println();

   }

   System.out.println("The reverse of array is:");

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

   {

       for(int j=1;j>=0;j--)

       {

       System.out.print(arr[i][j]+" ");

       }

       System.out.println();

   }

   }  

}

}

Similar questions