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: Print the sum, multiply, subtract, divide and remainder of two numbers

Java Basic: Exercise-6 with Solution

Write a Java program to print the sum (addition), multiply, subtract, divide and remainder of two numbers.

Test Data:
Input first number: 125
Input second number: 24

Pictorial Presentation:

Java: Print the sum, multiply, subtract, divide and remainder of two numbers

Sample Solution:

Java Code:

import java.util.Scanner;
 
public class Exercise6 {
 
 public static void main(String[] args) {
  Scanner in = new Scanner(System.in);
   
  System.out.print("Input first number: ");
  int num1 = in.nextInt();
   
  System.out.print("Input second number: ");
  int num2 = in.nextInt();
   
 
  System.out.println(num1 + " + " + num2 + " = " + 
  (num1 + num2));
   
  System.out.println(num1 + " - " + num2 + " = " + 
  (num1 - num2));
   
  System.out.println(num1 + " x " + num2 + " = " + 
  (num1 * num2));
   
  System.out.println(num1 + " / " + num2 + " = " + 
  (num1 / num2));
 
  System.out.println(num1 + " mod " + num2 + " = " + 
  (num1 % num2));
 }
 
}

Sample Output:

Input first number: 125                                                                                        
Input second number: 24                                                                                        
125 + 24 = 149
125 - 24 = 101
125 x 24 = 3000
125 / 24 = 5
125 mod 24 = 5     

Flowchart:

Flowchart: Java exercises: Print the sum, multiply, subtract, divide and remainder of two numbers

Sample Solution:

Java Code:

import java.util.Scanner;
public class Main {
 public static void main(String[] args) {
  Scanner scanner = new Scanner(System.in);
  System.out.println("Input the first number: ");
  int n1 = scanner.nextInt();
  System.out.println("Input the second number: ");
  int n2 = scanner.nextInt();
  int sum = n1 + n2;
  int minus = n1 - n2;
  int multiply = n1 * n2;
  int subtract = n1 + n2;
  int divide = n1 / n2;
  int rnums = n1 % n2;
  System.out.printf("Sum = %d\nMinus = %d\nMultiply = %d\nSubtract = %d\nDivide = %d\nRemainderOf2Numbers = %d\n ", sum, minus, multiply, subtract, divide, rnums);
 }
}

Sample Output:

Input the first number: 
 6
Input the second number: 
 5
Sum = 11
Minus = 1
Multiply = 30
Subtract = 11
Divide = 1
RemainderOf2Numbers = 1

Flowchart:

Flowchart: Java exercises: Print the sum, multiply, subtract, divide and remainder of two numbers.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program that takes two numbers as input and display the product of two numbers.
Next: Write a Java program that takes a number as input and prints its multiplication table upto 10.

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