Class Teedcalculator: public class Teedcalculator { public static void createMenu() { // function createMenu /*1. Arithmetic Operators 2. Trigonometric Operators 3. Bitwise Operators */ int ch , a, b , c , d , x ; System.out.println("You have 3 choice in menu :"); System.out.println("1 is Arithmetic Operators:"); System.out.println("2 is Trigonometric Operators:"); System.out.println("3 is Bitwise Operators:"); System.out.println("You can choose one from 1 - 3 :"); Scanner inputch= new Scanner (System.in);// Create a Scanner object ch = inputch.nextInt(); // ch is choose switch(ch){ case 1: Arithmetic arithmetic = new Arithmetic() ;//Creating Objects ...