Question: Java Programming Given three numbers from user input, decrement the first number by 2 and increment the second number by 1, Then do the magic
Java Programming
Given three numbers from user input, decrement the first number by 2 and increment the second number by 1, Then do the magic calculations as follows: get the sum of the first two numbers, deduct the third number from the second and get the product of the first and third number, then sum up the results of the three magic calculations.
Sample run 1:
Enter three numbers separated by spaces: 4 2 3
Output: Result of Magic calculations = 11
Sample run 2:
Enter three numbers separated by spaces: 1 2 3
Output: Result of Magic calculations = -1
create a Java program that solves the program as per the given sample out puts and problem description
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
