Java: Create a new array that is left shifted from a given array of integers
Java Basic: Exercise-106 with Solution
Write a Java program to create an array left shifted from a given array of integers.
Pictorial Presentation:

Sample Solution:
Java Code:
import java.util.*;
public class Exercise106 {
public static void main(String[] args) {
int[] array_nums = {11, 15, 13, 10, 45, 20};
System.out.println("Original Array: "+Arrays.toString(array_nums));
if (array_nums.length > 1) {
int first = array_nums[0];
// Shift elements to the left by one position
for (int i = 1; i < array_nums.length; i++)
array_nums[i - 1] = array_nums[i];
// Move the first element to the end of the array
array_nums[array_nums.length - 1] = first;
System.out.println("New Array: "+Arrays.toString(array_nums));
}
}
}
Sample Output:
Original Array: [11, 15, 13, 10, 45, 20] New Array: [15, 13, 10, 45, 20, 11]
Flowchart:

Java Code Editor:
Previous: Write a Java program to check if a group of numbers (l) at the start and end of a given array are same.
Next: Write a Java program to check if an array of integers contains three increasing adjacent numbers.
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