Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Write a description of class ATMCaseStudy here.
- *
- * @author (your name)
- * @version (a version number or a date)
- */
- public class ATMCaseStudy
- {
- // main method creates and runs the ATM
- public static void main(String[] args){
- ATM theATM = new ATM();
- theATM.run();
- } // end main
- } // end class ATMCaseStudy
Advertisement
Add Comment
Please, Sign In to add comment