Play with Array in java
In this program you are given with array, you need to print the first highest and second highest number in first place and second place respectively followed by remaining elements of array without loosing their index.
Input
7
29 79 17 8 4 9 97
Output:
97 79 29 17 8 4 9
Input:
7
1 2 3 4 5 6 7
Output:
7 6 1 2 3 4 5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* In this program you are given with array, you need to print the first highest and | |
* second highest number in first place and second place respectively followed by | |
* remaining elements of array without loosing their index. | |
*/ | |
import java.util.*; | |
public class Testing { | |
public static void main(String [] args){ | |
Scanner sc=new Scanner(System.in); | |
String size=sc.nextLine().trim(); | |
int len=Integer.parseInt(size); | |
if(len>1){ | |
String arrayElements=sc.nextLine(); | |
String [] array=arrayElements.split(" "); | |
int firstMax=Integer.parseInt(array[0]); | |
int secondMax=Integer.parseInt(array[1]); | |
for(int i=0;i<array.length;i++){ | |
if(Integer.parseInt(array[i])>firstMax){ | |
secondMax=firstMax; | |
firstMax=Integer.parseInt(array[i]); | |
}else if(Integer.parseInt(array[i])>secondMax){ | |
secondMax=Integer.parseInt(array[i]); | |
System.out.println(secondMax); | |
} | |
} | |
System.out.print(firstMax+" "+secondMax); | |
for(int j=0;j<array.length;j++){ | |
if(firstMax!=Integer.parseInt(array[j])&&secondMax!=Integer.parseInt(array[j])){ | |
System.out.print(" "); | |
System.out.print(array[j]); | |
} | |
} | |
} | |
sc.close(); | |
} | |
} |
Input
7
29 79 17 8 4 9 97
Output:
97 79 29 17 8 4 9
Input:
7
1 2 3 4 5 6 7
Output:
7 6 1 2 3 4 5
Comments
Post a Comment