12345678910111213141516171819202122232425262728293031 |
-
- /**
- * 4.2 Scientific Calculator Group Project
- * Trinh Tong, Lauren Green, Michelle Dimarino
- * Advanced Calculator Menu
- *
- * TO DO
- *
- * Add MainMenu class - displays mainmenu / calls back to main menu
- */
- public class SciCalc
- {
- public void toSwitchDisplay() {
- SwitchDisplay switchDisplayMenu = new SwitchDisplay();
- }
-
- public void toMemory() {
- MemoryFunc memoryMenu = new MemoryFunc();
- }
-
- /**
- * To Trig -
- * sends user to trig functions of the calculator
- */
- public void toTrig(int y)
- {
- // calls the trig menu
- Trig trigMenu = new Trig();
- }
- }
|