Second Largest Even in java
For this challenge, you will be given an array and you are asked to find the second largest even number and print it to the stdout.
Input Format -
you will be taking a number as an input from stdin which tells about the length of the array. On another line, array elements should be there with single space between them.
Output Format -
print the second largest even number to the stdout.
Sample Test Case:
Sample Input:-6
78 92 44 63 71 97
Sample Output -
78
Input Format -
you will be taking a number as an input from stdin which tells about the length of the array. On another line, array elements should be there with single space between them.
Output Format -
print the second largest even number to the stdout.
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
/* | |
* For this challenge, you will be given an array and you are asked to | |
* find the second largest even number and print it to the stdout. | |
* | |
* | |
*/ | |
import java.io.*; | |
import java.util.*; | |
public class CandidateCode { | |
public static void main(String args[] ) throws Exception { | |
Scanner sc=new Scanner(System.in); | |
int size; | |
size=sc.nextInt(); | |
int [] arr=new int[size]; | |
for(int i=0;i<size;i++){ | |
arr[i]=sc.nextInt(); | |
} | |
int max=arr[0],secondMax=arr[1]; | |
for(int j=0;j<arr.length;j++){ | |
if(arr[j]%2==0){ | |
if(arr[j]>max){ | |
secondMax=max; | |
max=arr[j]; | |
} | |
} | |
} | |
System.out.println(secondMax); | |
sc.close(); | |
} | |
} |
Sample Input:-6
78 92 44 63 71 97
Sample Output -
78
Comments
Post a Comment