Exercise
Several operations
Objetive
Write a java program to print on screen the result of adding, subtracting, multiplying and dividing two numbers typed by the user. The remainder of the division must be displayed, too.
It might look like this:
Enter a number: 12
Enter another number: 3
12 + 3 = 15
12 - 3 = 9
12 x 3 = 36
12 / 3 = 4 <
12 mod 3 = 0
Example Code
// Importing the Scanner class to handle input from the userimport java.util.Scanner;
public class Program {
// Main method, entry point of the program
public static void main(String[] args) {
// Create a scanner object to read input from the user
Scanner scanner = new Scanner(System.in);
// Prompt the user to enter the first number
System.out.print("Enter the first number: ");
int number1 = scanner.nextInt();
// Prompt the user to enter the second number
System.out.print("Enter the second number: ");
int number2 = scanner.nextInt();
// Perform addition, subtraction, multiplication, division, and remainder
int sum = number1 + number2;
int difference = number1 - number2;
int product = number1 * number2;
int quotient = number1 / number2;
int remainder = number1 % number2;
// Display the results
System.out.println("The result of adding the numbers is: " + sum);
System.out.println("The result of subtracting the numbers is: " + difference);
System.out.println("The result of multiplying the numbers is: " + product);
System.out.println("The result of dividing the numbers is: " + quotient);
System.out.println("The remainder of the division is: " + remainder);
// Close the scanner
scanner.close();
}
}