Kr Younger 10d4b6366b maven | 6 lat temu | |
---|---|---|
.idea | 6 lat temu | |
.gitignore | 6 lat temu | |
README.TXT | 6 lat temu | |
README.md | 6 lat temu | |
package.bluej | 6 lat temu | |
pom.xml | 6 lat temu |
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.