Largest Even in java
Task - For this challenge, you will be given an array and you are asked to find the 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 largest even number to the STDOUT.
Sample Test Case:
Sample Input:-6
78 92 44 63 71 97
Sample Output -
92
Explanation:
In the given array, 78, 92 and 44 are the even numbers and we need to find the largest even number which is 92.
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 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
/* | |
* 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. | |
*/ | |
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 maxEven=arr[0]; | |
for(int j=0;j<arr.length;j++){ | |
if(arr[j]%2==0){ | |
if(arr[j]>maxEven){ | |
maxEven=arr[j]; | |
} | |
} | |
} | |
System.out.println(maxEven); | |
sc.close(); | |
} | |
} |
Sample Input:-6
78 92 44 63 71 97
Sample Output -
92
Explanation:
In the given array, 78, 92 and 44 are the even numbers and we need to find the largest even number which is 92.
Comments
Post a Comment