-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathGUI.java
More file actions
12 lines (12 loc) · 718 Bytes
/
GUI.java
File metadata and controls
12 lines (12 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
public interface GUI {
String graphicalUserInterface =
"-------------------------MENU------------------------\n" +
"Enter 'Deposit' or '+' to deposit money\n" +
"Enter 'Withdraw' or '-' to withdraw money\n" +
"Enter 'Balance' or '=' to check balance\n" +
"Enter 'Convert' or 'c' to convert currency\n" +
"Enter 'SignOut' or '/' to sign out of your account\n" +
"Enter 'Options' or 'o' to change username or password\n"+
"Enter 'turnoff' to shut down the system\n" +
"-------------------------MENU------------------------";
}