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
Java program to add two numbers without using addition operator
Ans:
In this tutorial you will learn writing program to add two numbers without using addition operator in Java.
Read This: Write a program in C to add two number without using third variable.
How this Java program will behave?
This program will take two number as a Input. And After performing some operation as per program, it will return addition.
Suppose if we give input 35 and 20. Our program will return 55 as an output without using of an addition operator.
Below is a program to add two numbers without using + operator in Java
import java.util.Scanner;
public class Main {
public static void main(String[] arg)
{
int x, y ;
Scanner sc = new Scanner(System.in);
System.out.print("Please Give first number: ");
x = sc.nextInt();
System.out.print("Please Give second number: ");
y = sc.nextInt();
while(y != 0){
int temp = x & y;
x = x ^ y;
y = temp << 1;
}
System.out.print("Sum = "+x);
System.out.print("\n");
}
}
Output:
Also prepare these Java Programs:
- Write a program in Java to print the Fibonacci series using iterative method.
- Palindrome program in Java using Iterative method
- Java program to find largest of three numbers
- Java program to sum the digits of a number using recursion
- Java program to swap two numbers using third variable
- Java Program to check if two strings are anagrams
- Java program to find largest and smallest number in an array
- Java Program to find top two maximum number in array
- Java Program to remove duplicate elements from an array
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