Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package prj10072021;
- public class RunGame {
- public static void main(String[] args) {
- Game myGame;
- myGame = new Game("Ali", "Usif", 36);
- String winnerName = myGame.startGame();
- System.out.println(winnerName + " win the game");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement