|
|
8 лет назад | |
|---|---|---|
| .idea | 8 лет назад | |
| .gitignore | 8 лет назад | |
| README.TXT | 8 лет назад | |
| README.md | 8 лет назад | |
| package.bluej | 8 лет назад | |
| pom.xml | 8 лет назад |
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.