Question: Help with finish this simple below Java code console calculator with if statements with the // math operators: + - / *, thanks! public class
Help with finish this simple below Java code console calculator with "if" statements with the // math operators: + - / *, thanks! public class Main { public static void main(String[] args) { System.out.print("Enter the first digit: "); Scanner input = new Scanner(System.in); input.nextInt(); System.out.print("Enter the math operator: "); input.next().charAt(0); System.out.print("Enter the second digit: "); Scanner secInput = new Scanner(System.in); secInput.nextInt(); if (true) { System.out.println(); } } } Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
