top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

in java array program

0 votes
367 views

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

Example1:

 C:\>java Sample 1 2 3

 O/P Expected : Please enter 4 integer numbers

Example2:

 C:\>java Sample 1 2 3 4

 O/P Expected : 

The given array is :
1 2
3 4
The reverse of the array is :
4 3
2 1

1 2 3 4
5 6 7 8
9 10 11 12

posted Feb 20, 2019 by Rohit Kumar

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
+1 vote

Write a program to print the sum of the elements of the array with the given below condition. If the array has 6 and 7 in succeeding orders, ignore 6 and 7 and the numbers between them for the calculation of sum.
Eg1) Array Elements - 10,3,6,1,2,7,9
O/P: 22
[i.e 10+3+9]
Eg2) Array Elements - 7,1,2,3,6
O/P:19
Eg3) Array Elements - 1,6,4,7,9
O/P:10

...