3
1

Compare commits

...

2 Commits

View File

@ -44,16 +44,16 @@ class A3 {
switch (choice) { switch (choice) {
case 1: case 1:
new A3().add(a, b); System.out.println("Result: " + new A3().add(a, b));
break; break;
case 2: case 2:
new A3().sub(a, b); System.out.println("Result: " + new A3().sub(a, b));
break; break;
case 3: case 3:
new A3().mul(a, b); System.out.println("Result: " + new A3().mul(a, b));
break; break;
case 4: case 4:
new A3().div(a, b); System.out.println("Result: " + new A3().div(a, b));
break; break;
case 5: case 5:
System.out.println("## END OF CODE"); System.out.println("## END OF CODE");