×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
calculate the power of the given number in Java Multiplication of two matrix - Java Program
Java Program to Exchange Odd Position Element with Even Position Element - Java
5873    Arnab De    31/03/2019

Write a java program to exchange the every odd position element with the corresponding even position element. the array may have the odd numbers of elements or even numbers of elements.

Input: 15 7 18 21 9 12 87 25 8 5
output: 7 15 21 18 12 9 25 87 5 87

softetechnologies

Apply swap logic for every odd position element and even position element of an array. but no need to think about the total no of elements of the array. It may be even numbers of elements or odd numbers of elements

	class OddEvenExchange
	{
		public static void main()
		{
			int []arr={15,7,18,21,9,12,87,25,8,5};
			int i,temp;
			System.out.println("\nAfter Exchange");
			for(i=0;i<arr.length;i++)
			{
				System.out.print(arr[i] + " ");
			}
			for(i=0;i<arr.length;i+=2)
			{
				temp=arr[i];
				arr[i]=arr[i+1];
				arr[i+1]=temp;
			}
			System.out.println("\nBefore Exchange");
			for(i=0;i<arr.length;i++)
			{
				System.out.print(arr[i] + " ");
			}
		}
	}
softetechnologies
calculate the power of the given number in Java Multiplication of two matrix - Java Program
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Albert Einstein
Do not worry about your difficulties in Mathematics. I can assure you mine are still greater.
Albert Einstein
2403
64.28
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     47382
25/06/2018     39477
01/01/2018     39090
28/06/2017     36982
02/08/2017     35708
01/08/2017     29943
06/07/2017     29728
15/05/2017     29214
14/07/2017     25097
11/09/2018     24243
softetechnologies