-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDiceRoller.java
More file actions
112 lines (81 loc) · 3.04 KB
/
DiceRoller.java
File metadata and controls
112 lines (81 loc) · 3.04 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import java.util.Scanner;
import java.util.Random;
public class DiceRoller{
public static void main(String[] args) {
//Dice Roller Program to print dice rolled using ASCII Art
Random random = new Random();
Scanner scanner = new Scanner(System.in);
int numOfDice, total = 0;
System.out.print("Enter number of dice to be rolled : ");
numOfDice = scanner.nextInt();
if (numOfDice > 0) {
for (int i = 0; i < numOfDice; i++) {
int roll = random.nextInt(1, 7);
System.out.println("You rolled : " + roll);
printDie(roll);
total += roll;
}
System.out.println("Total : " + total);
} else {
System.out.println("\nNumber of Dice must be greater than zero!");
}
scanner.close();
}
static void printDie(int roll) {
//Inorder to print ASCII art we need to create multi line string.
//Right in the middle of the string created , we are going to add a bullet point.
//The easiest way to do this is to pull up with charMap application. (Hold windows & type 'R' & select bullet point by scrolling all the way down).
//Also you can search on google & copy that as well.
String dice1 = """
-------
| |
| ● |
| |
-------
""";
String dice2 = """
-------
| ● |
| |
| ● |
-------
""";
String dice3 = """
-------
| ● |
| ● |
| ● |
-------
""";
String dice4 = """
-------
| ● ● |
| |
| ● ● |
-------
""";
String dice5 = """
-------
| ● ● |
| ● |
| ● ● |
-------
""";
String dice6 = """
-------
| ● ● |
| ● ● |
| ● ● |
-------
""";
switch (roll) {
case 1 -> System.out.print(dice1);
case 2 -> System.out.print(dice2);
case 3 -> System.out.print(dice3);
case 4 -> System.out.print(dice4);
case 5 -> System.out.print(dice5);
case 6 -> System.out.print(dice6);
default -> System.out.print("Invalid Roll!");
}
}
}