Javatpoint Logo
Javatpoint Logo

Add Two Numbers Without Using Operator in Java

In the world of programming, basic arithmetic operations like addition are often taken for granted. We rely on operators like '+' to perform addition effortlessly. However, have you ever wondered how to add two numbers without using any operators in Java? In this section, we will explore a few creative ways to achieve this seemingly simple task while learning about fundamental programming concepts along the way.

Why Learn to Add Without Operators?

Before we dive into the code, it's essential to understand the significance of learning to add without operators. While modern programming languages provide us with convenient built-in operators for arithmetic operations, there are several real-world scenarios where we might need to perform addition without using them. It includes low-level programming, optimizing code for specific hardware, or solving programming puzzles that restrict the use of operators.

Let's explore three different methods to add two numbers without using operators in Java, along with full programs and explanations for each.

Method 1: Using Bitwise Operations

Java offers bitwise operations that manipulate individual bits in numbers. We can utilize these operations to simulate addition.

AddWithoutOperator.java

Output:

Sum of 5 and 7 is: 12

Explanation:

We declare a method add that takes two integers, a and b, as parameters. Inside the method, we use a while loop to continue until b becomes zero. In each iteration, we calculate the carry by performing a bitwise AND operation (a & b) between a and b. We then update a by performing a bitwise XOR operation (a ^ b) between a and b. Finally, we shift the carry left by one bit (carry << 1) and assign it to b.

Method 2: Using Recursion

Another way to add two numbers without operators is by using recursion. The method is conceptually straightforward and relies on the principle of breaking down the addition into smaller, more manageable parts.

AddWithoutOperator.java

Output:

Sum of 5 and 7 is: 12

Explanation:

We define a recursive method add that takes two integers, a and b, as arguments. In the base case (when b becomes zero), we return a. In each recursive call, we calculate the sum by performing a bitwise XOR operation (a ^ b) between a and b. We also calculate the carry by performing a bitwise AND operation (a & b) between a and b, and then shifting it left by one bit (carry << 1). We make a recursive call with the updated sum and carry values until b becomes zero.

Method 3: Using Arrays

In this approach, we use arrays to simulate addition. Each element in the array represents a binary digit (0 or 1).

AddWithoutOperator.java

Output:

Sum of 5 and 7 is: 12

Explanation:

In this method, we first convert the input integers a and b into binary arrays using the intToBinaryArray() method. We create an array result to store the binary representation of the sum. We iterate through each bit position from right to left, performing binary addition while keeping track of the carry. The binaryArrayToInt() method is used to convert the binary array back to an integer.

Method 4: Using a While Loop

The method involves using a while loop to add two numbers without operators by mimicking the behavior of a full-adder circuit. We'll maintain three variables: sum, carry, and temp. Here's the code:

AddWithoutOperator.java

Output:

Sum of 8 and 6 is: 14

Explanation:

This method is similar to Method 1, where we use bitwise operations to simulate addition. We iterate through a while loop until b becomes zero. In each iteration, we calculate the carry by performing a bitwise AND operation (a & b) between a and b. We then update a by performing a bitwise XOR operation (a ^ b) between a and b. Finally, we shift the carry left by one bit (carry << 1) and assign it to b.

Method 5: Using Recursion with Ternary Operators

In this method, we use recursion along with ternary operators to add two numbers without using traditional arithmetic operators. This approach demonstrates how ternary operators can be used to handle the carry and sum calculations.

AddWithoutOperator.java

Output:

Sum of 12 and 9 is: 21

In this method, we define a recursive function add that takes two integers, a and b. The base case for the recursion is when b becomes zero. In this case, we return a. In each recursive call, we calculate the sum and carry using ternary operators: a ^ b calculates the sum. (a & b) << 1 calculates the carry by performing a bitwise AND operation and shifting the result one bit to the left. We use ternary operators to handle the recursive calls and return the result.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA