-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiceprogram.java
More file actions
93 lines (83 loc) · 2.25 KB
/
diceprogram.java
File metadata and controls
93 lines (83 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import java.util.Random;
import java.util.Scanner;
public class diceprogram {
public static void main(String[] args) {
//java dice roller program
Scanner sc = new Scanner(System.in);
Random rm = new Random();
//declare variable
int ndice;
int total = 0;
System.out.println("Enter the # of dice to roll : ");
ndice = sc.nextInt();
if (ndice > 0) {
//System.out.println("you roll the dice");
for (int i = 0; i < ndice; i++) {
int roll = rm.nextInt(1, 6);
printDie(roll);
System.out.println("you rolled " + roll);
total += roll;
}
System.out.println("total " + total);
} else {
System.out.println("# of dice must of greater than 0");
}
sc.close();
}
//roll the dice
//total get
// display ascii of dice
static void printDie(int roll){
String dice1= """
-------
| |
| ● |
| |
--------
""";
String dice2= """
-------
| |
| ● |
| ● |
--------
""";
String dice3= """
-------
| ● |
| ● |
| ● |
--------
""";
String dice4= """
-------
| ● ● |
| |
| ● ● |
--------
""";
String dice5= """
-------
| ● ● |
| ● |
| ● ● |
--------
""";
String dice6= """
-------
| ● ● |
| ● ● |
| ● ● |
--------
""";
switch(roll){
case 1 -> System.out.println(dice1);
case 2 -> System.out.println(dice2);
case 3 -> System.out.println(dice3);
case 4 -> System.out.println(dice4);
case 5 -> System.out.println(dice5);
case 6 -> System.out.println(dice6);
default -> System.out.println("invalid");
}
}
}