w3resource

Java: Get the larger value between first and last element of an array of integers

Java Basic: Exercise-80 with Solution

Write a Java program to get the largest value between the first and last elements of an array (length 3) of integers.

Sample Solution:

Java Code:

import java.util.Arrays;

public class Exercise80 {
    public static void main(String[] args) {
        // Define an integer array, array_nums
        int[] array_nums = {20, 30, 40};
        
        // Print the elements of the original array
        System.out.println("Original Array: " + Arrays.toString(array_nums)); 
        
        // Initialize a variable, max_val, with the first element of the array
        int max_val = array_nums[0];
        
        // Check if the last element of the array is greater than max_val and update max_val if necessary
        if (array_nums[2] >= max_val)
            max_val = array_nums[2];
        
        // Print the larger value between the first and last elements of the array
        System.out.println("Larger value between first and last element: " + max_val); 
    }
}

Sample Output:

Original Array: [20, 30, 40]                                           
Larger value between first and last element: 40 

Pictorial Presentation:

Java exercises: Get the larger value between first and last element of an array of integers

Flowchart:

Flowchart: Java exercises: Get the larger value between first and last element of an array of integers

Java Code Editor:

Previous: Write a Java program to rotate an array (length 3) of integers in left direction.
Next: Write a Java program to swap the first and last elements of an array (length must be at least 1) and create a new array.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/java-exercises/basic/java-basic-exercise-80.php