Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: Add two numbers without using any arithmetic operators

Java Basic: Exercise-111 with Solution

Write a Java program to add two numbers without using any arithmetic operators.

Given x = 10 and y = 12; result = 22

Sample Solution:

Java Code:

import java.util.Scanner;
public class Example111 {
     public static void main(String[] arg) 
	 {
	   int x, y ;
	   Scanner in = new Scanner(System.in);	
	   System.out.print("Input first number: ");
	   x = in.nextInt(); 
	   System.out.print("Input second number: ");
	   y = in.nextInt(); 
      while(y != 0){
            int carry = x & y;
            x = x ^ y;
            y = carry << 1;
        }
        System.out.print("Sum: "+x); 
		System.out.print("\n");     	
	}	
}

Sample Output:

Input first number: 10                                                  
Input second number: 12                                                
Sum: 22  

Pictorial Presentation:

Java exercises: Add two numbers without using any arithmetic operators.

Flowchart:

Flowchart: Java exercises: Add two numbers without using any arithmetic operators

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to check whether an given integer is a power of 4 or not.
Next: Write a Java program to compute the number of trailing zeros in a factorial.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe