Swapping two numbers in Java programming means swapping the values of two variables, which can be done using a temporary variable or without using a temporary variable. Swapping values is useful in programming, such as sorting or reordering elements in an array.
Example:
There are two variables m & n. Value of m is “4” & value of n is “5”.
Before Swapping: m value = 4; n value = 5
After Swapping: m value = 5; n value = 4
Write a Java Program to Read Two Integers M and N & Swap their Values.
1. Enter any two integer numbers as input.
2. After that we take a new variable temp and copy first variable to this temp variable.
3. Now we copy second variable to first variable and temp variable into second variable.
4. Hence we get the swapped values as output.
Let’s discuss different ways to swap two numbers in Java language.
- Swap Two Numbers in Java using Temporary Variable
- Swap Two Numbers in C without using any Temporary Variable
In this method, we will use another temporary variable to help in the swapping of the two numbers.
Here is the source code of the Java Program to Read Two Integers M and N & Swap their Values using temp variable. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.
/* * Java program to read two integers M and N and to swap their values. * Using Temporary variables. */ import java.util.Scanner; public class Swap_Integers { public static void main(String args[]) { int m, n, temp; Scanner s = new Scanner(System.in); System.out.print("Enter the first number:"); m = s.nextInt(); System.out.print("Enter the second number:"); n = s.nextInt(); temp = m; m = n; n = temp; System.out.println("After Swapping"); System.out.println("First number:"+m); System.out.println("Second number:"+n); } }
1. The class “Swap_Integers” is declared as public and contains the main() method.
2. The main() method declares three integer variables: m, n, and temp.
3. The user is prompted to enter the first and second numbers using the println() and nextInt() methods respectively.
4. The value of “m” is assigned to “temp“, “n” is assigned to “m“, and “temp” is assigned to “n“, thus swapping the values of m and n.
5. The swapped values of m and n are printed using the println() method.
Time Complexity: O(1)
The time complexity of this program is O(1) since the number of operations performed is constant and does not depend on the size of the input.
Space Complexity: O(1)
The space complexity of this program is O(1) since only a constant amount of space is used to store the variables and the Scanner object.
$ javac Swap_Integers.java $ java Swap_Integers Enter the first number:5 Enter the second number:7 After Swapping First number:7 Second number:5
In this approach, we will swap two integers without using any temporary variables.
Here is source code of the Java program that will swap two numbers without using any temporary variables. The Java program is successfully compiled and run on a Linux system. The program output is also shown below.
/* * Swap Two Numbers in Java without using any Temporary Variable */ import java.util.Scanner; public class Swap_Integers { public static void main(String args[]) { int m, n; Scanner s = new Scanner(System.in); System.out.print("Enter the first number:"); m = s.nextInt(); System.out.print("Enter the second number:"); n = s.nextInt(); m = m + n; n = m - n; m = m - n; System.out.println("After Swapping"); System.out.println("First number:"+m); System.out.println("Second number:"+n); } }
1. The program starts by importing the Scanner class from the java.util package.
2. The class “Swap_Integers” is declared as public and contains the main() method.
3. The main() method declares two integer variables: m and n. m and n are the two numbers to be swapped.
4. The user is prompted to enter the first and second numbers using the println() and nextInt() methods respectively.
5. The values of m and n are swapped without using a temporary variable.
6. The swapped values of m and n are printed using the println() method.
Time Complexity: O(1)
The time complexity of the above program is constant time or O(1), as the number of operations performed does not change with the size of the input.
Space Complexity: O(1)
The space complexity of the program is O(1), as it only uses a constant amount of memory to store the input variables and the Scanner object.
$ javac Swap_Integers.java $ java Swap_Integers Enter the first number: 4 Enter the second number: 5 After Swapping First number: 5 Second number:4
To practice programs on every topic in Java, please visit “Programming Examples in Java”, “Data Structures in Java” and “Algorithms in Java”.
- Apply for Computer Science Internship
- Check Programming Books
- Apply for Java Internship
- Practice Programming MCQs
- Practice Information Technology MCQs