Write Program Evaluate Following Expressions Print Results Program Store Result Variable P Q43863431
Write a program to evaluate the following expressions andprint out the results.Your program should store the result into a variable and thenprint out the variable. Make sure to select the proper type ofvariable (String/int/double/etc)Hint: while not required, I would suggest that you try topredict the answer to each one before it prints out forpractice.
For example, the answer to the first line would beString answer0 = 3 + “2”;System.out.println(answer0);
int answer1 = 3 – 1;System.out.println(answer1);———————————————
* 3 – 1* 2 + 2 + 3 + 4* 2 + 2 + 3.1 + 4* 2 + ” 2 + 3 ” + 4* 3 + 4 + ” 2 + 2″* 2 + 2 + (3 / 4)* (12 / 2) + (13 / 4.0)* “hello” + 2 * 4* 2 + 2.0 + 2 * 2 + 2* 4 + 1 + 9 + .01 + (-3 + 10) + 11 / 3* 8 + 16 / 5 + 4 + 0 + 12 / 5.0* 1 + 1 + (8 – 2) * 1 + 1* 5 + 2 + “(1 + 1)” + 4 + 2 * 3* “1” + 2 + 3 + “4” + 5 * 6 + “7” + (8 + 9)
could anybody do these to have certan answers?
Expert Answer
Answer to Write a program to evaluate the following expressions and print out the results.Your program should store the result int…
OR