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:
Flowchart:

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.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join