-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrolldice.java
More file actions
81 lines (78 loc) · 2.44 KB
/
Copy pathrolldice.java
File metadata and controls
81 lines (78 loc) · 2.44 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
import java.util.Random;
import java.util.Scanner;
public class rolldice {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
Random rand = new Random();
int numberofDice;
int total = 0;
System.out.print("Enter the number of dice to roll: ");
numberofDice = scanner.nextInt();
if(numberofDice > 0) {
for(int i = 1; i <= numberofDice; i++) {
int roll = rand.nextInt(1, 7);
printDice(roll);
System.out.println("You rolled: " + roll);
total += roll;
}
System.out.println("Your Total rolled: " + total);
}
else
{
System.out.println("Invalid input Dice must be Start from 1 to 6 Only.");
}
}
static void printDice(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.print("Invalid Roll Number");
}
}
}