Advertisement
Guest User

Untitled

a guest
May 26th, 2017
498
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5.  
  6. package bjackcardcountersim;
  7. import java.util.Scanner;
  8.  
  9. /**
  10. *
  11. * @author Ted Breedion - breedon.ted@gmail.com
  12. */
  13. public class Main {
  14.  
  15. /**
  16. * @param args the command line arguments
  17. */
  18. public static void main(String[] args) {
  19.  
  20. Scanner scan = new Scanner(System.in);
  21. Shoe shoe = new Shoe();
  22. for (String str : shoe.sixdecks)
  23. {
  24. //System.out.println(str);
  25. }
  26.  
  27.  
  28.  
  29. }
  30.  
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement