Guest User

Untitled

a guest
May 22nd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1. package cardgame;
  2. public class TestProgram {
  3.     public static void main(String[] args) {
  4.         CardGame myGame = new CardGame ();
  5.        
  6.         do {
  7.             myGame.getUserGuess();
  8.             myGame.computeResult();
  9.            
  10.         }while(!myGame.endGame());
  11.        
  12.        
  13.     }
  14. }
Add Comment
Please, Sign In to add comment