version 1.2

- added total retention
  - similar to "Ans" on TI calculators
 -made Calc class to hold all Calc methods
This commit is contained in:
Chris's Razer Blade 2021-01-22 11:36:34 -05:00
parent f6b9e391ba
commit 909d5353df
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public class Main {
total = Calc.div(num1, num2); total = Calc.div(num1, num2);
System.out.println(total); System.out.println(total);
} }
default -> System.out.println("Unexpected value: " + op + " ...restarting program"); default -> System.out.println("Unexpected value: '" + op + "' ...restarting program");
} }
} }
} }