Page Contents
Interview Content
- C Programming Coding Questions
- C Pattern Programming Questions
- C Programming Interview Questions
- Java Programming Coding Questions
- Java Pattern Programming Questions
- Java Programming Interview Questions
- Python Programming Coding Questions
- Python Pattern Programming Questions
- Python Programming Interview Questions
- SQL Interview Questions
Swap two number in java without using the third Variable
Ans:
In this tutorial you will see Java program to swap two number without using temp variable.
This is also a important program which commonly asked in interview.
Read This: C program to swap two number without using third variable.
In Swapping operation basically we change value of variable.
Suppose assigned value of variable ‘a’ is 5 and the variable b has assigned value 4.
After Swapping of it, ‘a’ will have 4 and value ‘b’ will have 5.
How this java program will behave?
Our Java program will take two value as an input. And after performing swapping operation it will print output.
For example: a=5 and b=4
Now after execution of the program our output will be
a=4 and b = 5
Java Program to swap two number without using third variable
import java.util.*;
class Main{
public static void main(String ...args){
int tempvar;
Scanner sc= new Scanner(System.in);
System.out.print("Enter first number- ");
int firstno= sc.nextInt();
System.out.print("Enter second number- ");
int secondno= sc.nextInt();
System.out.print("before swapping firstno : "+firstno+" secondno and "+secondno);
firstno=firstno-secondno;
secondno=firstno+secondno;
firstno=secondno-firstno;
System.out.print("\nafter swapping firstno : "+firstno+" secondno and "+secondno);
}
}
Output:
Also prepare these Java Programs:
- Java Program to print Fibonacci series using recursive method
- Palindrome program in Java for number using Recursive method
- Java program to check a given is an Armstrong
- Java program to add two numbers without using addition operator
- How to remove a character from a string in java
- Write a program in Java to count occurrence of a given character in a String.
- Java program to find largest and smallest number in an array
- Java program to print first duplicate number in an array of 1-100
- Java Program to remove duplicate elements from an array
- Program to count repeated elements in an array java
Latest Uploads on Website
- AVL Tree with explanation
- Radix sort algorithm explanation with example
- Quick Sort Algorithm with explanation
- Bubble sorting algorithm with Bubble sort program in C
- Insertion sort algorithm and program in C
- Selection Sort Algorithm and Program in C
- Linear probing technique explanation with example
- Collision in Hashing and Collision resolution technique
- Hashing in data structure with its types
- Binary search tree operations with Program
- Binary search tree in data structure
- Binary search algorithm in data structure with explanation
- linear search in data structure with Algo and Program