Develop with Java programming language a calculator (console application) that takes a number, a basic math operator ( + , - , * , / , % ), and a second number all from user input, and have it print the result of the mathematical operation. The mathematical operations should be wrapped inside of functions. Note: Do please use the provided source code template to implement your solution. The purpose of this problem is not only to assess the students' ability to build

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Develop with Java programming language a calculator (console application) that takes a number, a basic math operator ( + , - , * , / , % ), and a second number all from user input, and have it print the result of the mathematical operation. The mathematical operations should be wrapped inside of functions.

Note: Do please use the provided source code template to implement your solution. The purpose of this problem is not only to assess the students' ability to build a valid implementation but also to assess the ability to read the Java code.

Input:

On single line a number, a basic math operator ( + , - , * , / , % ), and a second number all from user input.

Output:

On new line result of the mathematical operation. In the case of "Division by zero" you must printout the text message "Error".

 

 

The code must have the structure as shown in the picture and should work for negative numbers as well

Calculator.java
1 - import java.util.Scanner;
2
3
4 - public class Calculator {
public static void main(String[] args) {
Scanner console = new Scanner (System.in);
5-
6
7
8
// add your code here
}
10
private static int addition(int number1, int number2) {
// add your code here
11 -
12
13
14
15 -
private static int subtraction(int number1, int number2) {
// add your code here
16
17
18
private static int multiplication(int number1, int number2) {
// add your code here
19 -
20
21
}
22
private static int division(int dividend, int divisor) {
// add your code here
}
23 -
24
25
26
27
Transcribed Image Text:Calculator.java 1 - import java.util.Scanner; 2 3 4 - public class Calculator { public static void main(String[] args) { Scanner console = new Scanner (System.in); 5- 6 7 8 // add your code here } 10 private static int addition(int number1, int number2) { // add your code here 11 - 12 13 14 15 - private static int subtraction(int number1, int number2) { // add your code here 16 17 18 private static int multiplication(int number1, int number2) { // add your code here 19 - 20 21 } 22 private static int division(int dividend, int divisor) { // add your code here } 23 - 24 25 26 27
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
ADT and Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education