Advertisement
GSculerlor

ATMCaseStudy.java

Oct 26th, 2017
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. /**
  2.  * Driver program for the ATM case study
  3.  */
  4.  
  5. public class ATMCaseStudy {
  6.     // main method creates and runs the ATM
  7.     public static void main(String[] args) {
  8.         ATM theATM = new ATM();
  9.         theATM.run();
  10.     } // end main
  11. } // end class ATMCaseStudy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement