first commit

This commit is contained in:
Ali Can Zeybek
2025-01-09 20:02:51 +03:00
commit 72514365eb
55 changed files with 1285 additions and 0 deletions

45
Code/Display.java Normal file
View File

@@ -0,0 +1,45 @@
public class Display {
public Display() {
// TODO - implement Display.Display
throw new UnsupportedOperationException();
}
/**
*
* @param message
*/
public void display(String message) {
// TODO - implement Display.display
throw new UnsupportedOperationException();
}
/**
*
* @param prompt
*/
public int readPIN(String prompt) {
// TODO - implement Display.readPIN
throw new UnsupportedOperationException();
}
/**
*
* @param prompt
* @param menu
*/
public int readMenuChoice(String prompt, String[] menu) {
// TODO - implement Display.readMenuChoice
throw new UnsupportedOperationException();
}
/**
*
* @param prompt
*/
public Money readAmount(String prompt) {
// TODO - implement Display.readAmount
throw new UnsupportedOperationException();
}
}