Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: 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 a new array that is left shifted from a given array of integers.

Pictorial Presentation:

Java Basic Exercises: Create an array that is left shifted from a given array of integers

Sample Solution:

Java Code:

import java.util.*; 
import java.io.*; 
 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];
              
    for(int i = 1; i < array_nums.length; i++)
        array_nums[i - 1] = array_nums[i];
                        
    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:

Flowchart: Java exercises: Create a new array that is left shifted from a given array of integers

Java Code Editor:

Contribute your code and comments through Disqus.

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.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe