Arithmetic Assignment
Create a java class called Arithmetic that prints 4 arithmetic math problems. For each math problem that you create, write code that prints the original arithmetic expression and then shows the answer on the same output line. Each expression should have a minimum of 4 operations. For example, an expression may look like this:
6 + 5 * 6 – 9 / 2
Your program output would look like this:
6 + 5 * 6 – 9 / 2 = 32
Each of the 5 operations (+, -, *, /, %) should be used at least once in your program. They do not all need to be used in each expression.
Your output statement should evaluate the expression which means you will not type the actual answer. The answer will be evaluated when you compile and run your code.
Submit your java file to the Arithmetic dropbox for grading.
*** Notice that when you compile and run your program, 3 files are created (.class, .java, .java~). The only file that can be read is the .java file. Do not submit the .class or .java~ files. ***