Kr Younger 10d4b6366b maven | před 6 roky | |
---|---|---|
.idea | před 6 roky | |
.gitignore | před 6 roky | |
README.TXT | před 6 roky | |
README.md | před 6 roky | |
package.bluej | před 6 roky | |
pom.xml | před 6 roky |
Make a blackjack game, play against the computer-dealer. Aces are always, only, 1.
Writing a Blackjack program
Create a BlackJack class, with a runGame() method.
That’s all!
you might want to use...
public int generateRandomInt() {
int min = 1;
int max = 10;
Random r = new Random();
return r.nextInt((max - min) + 1) + min;
}
You will have to put
import java.util.Random;
at the very top of your class file.